notifications colors fix

This commit is contained in:
amirrezaghabeli
2025-09-29 09:15:40 +03:30
parent bc89e69209
commit 4ef3ca206d
8 changed files with 39 additions and 26 deletions
+7 -7
View File
@@ -102,21 +102,19 @@ class AppColors {
static Color get primary10Light =>
_isDarkMode
? const Color.fromRGBO(104, 151, 151, 0.2)
? const Color.fromRGBO(41, 111, 221, 0.05)
: const Color(0xFFF7FAFF);
static Color get primary20 =>
_isDarkMode
? const Color.fromRGBO(111, 134, 165, 0.2)
: const Color.fromRGBO(11, 134, 165, 0.2);
? const Color.fromRGBO(115, 134, 165, 0.3)
: const Color.fromRGBO(229, 239, 255, 1);
static Color get primary30 =>
_isDarkMode ? const Color(0xFF06162E) : const Color(0xFFD9E8FF);
static Color get orange10 =>
_isDarkMode
? const Color.fromRGBO(131, 120, 105, 0.2)
: const Color(0xFFFFF2DE);
_isDarkMode ? const Color(0xFF2D2923) : const Color(0xFFFFF7EB);
static Color get orange0 =>
_isDarkMode
@@ -156,6 +154,9 @@ class AppColors {
static Color get purpleLight =>
_isDarkMode ? const Color(0xFFEAE6EF) : const Color(0xFFEAE6EF);
static Color get orange20 =>
_isDarkMode ? const Color(0xFF6B5E4B) : const Color(0xFFF6D7AB);
static Color get red0 =>
_isDarkMode
? const Color(0xFF312F2F)
@@ -181,5 +182,4 @@ class AppColors {
static const Color yellow4 = Color(0xFFC07A25);
static const Color secondaryborder = Color(0xFFCDCDCD);
static const Color secondaryborder2 = Color(0xFFDADADA);
static const Color orange20 = Color(0xFFF6D7AB);
}