From 733df2dcb595d386f2088d120f7f343fe6a98386 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Wed, 26 Nov 2025 12:27:07 +0100 Subject: [PATCH] Changed highlight color --- lib/core/custom_theme.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/custom_theme.dart b/lib/core/custom_theme.dart index b80b4f6..5930901 100644 --- a/lib/core/custom_theme.dart +++ b/lib/core/custom_theme.dart @@ -16,9 +16,9 @@ class CustomTheme { static BoxDecoration highlightedBoxDecoration = BoxDecoration( color: boxColor, - border: Border.all(color: Colors.blue), + border: Border.all(color: primaryColor), borderRadius: BorderRadius.circular(12), - boxShadow: [BoxShadow(color: Colors.blue.withAlpha(120), blurRadius: 12)], + boxShadow: [BoxShadow(color: primaryColor.withAlpha(120), blurRadius: 12)], ); static AppBarTheme appBarTheme = AppBarTheme(