From b986ca1cc706faa8ce0428f202b71315d4359352 Mon Sep 17 00:00:00 2001 From: zaid_daoud Date: Tue, 21 Nov 2023 16:01:58 +0300 Subject: [PATCH] high priority color --- lib/new_views/app_style/app_color.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/new_views/app_style/app_color.dart b/lib/new_views/app_style/app_color.dart index b8e0d661..3e5b4844 100644 --- a/lib/new_views/app_style/app_color.dart +++ b/lib/new_views/app_style/app_color.dart @@ -41,7 +41,7 @@ class AppColor { static Color greenStatus(BuildContext context) => context.isDark ? const Color(0xff1FA269) : green50; static Color blueStatus(BuildContext context) => context.isDark ? primary40 : primary50; - static Color redStatus(BuildContext context) => context.isDark ? const Color(0xffFFB6B8) : red50; + static Color redStatus(BuildContext context) => context.isDark ? const Color(0xffFFB6B8) : red40; static Color yellowStatus(BuildContext context) => context.isDark ? const Color(0xffFFDA76) : orange40; static Color background(BuildContext context) => context.isDark ? neutral60 : Colors.white; static Color selectedButtonColor(BuildContext context) => context.isDark ? neutral60 : neutral30;