dark colors added

This commit is contained in:
amirrezaghabeli
2025-08-07 11:06:52 +03:30
parent cc12c6bb5c
commit 4179a0b292
9 changed files with 144 additions and 129 deletions
+12 -2
View File
@@ -91,10 +91,20 @@ class AppColors {
static Color get textBlue =>
_isDarkMode ? const Color(0xFF3A87FF) : const Color(0xFF0164FF);
static Color get primary10 =>
_isDarkMode
? const Color.fromRGBO(104, 151, 151, 0.2)
: const Color(0xFFEAF8F9);
static Color get primary20 =>
_isDarkMode
? const Color(0x7386a533).withValues(alpha: 0.2)
: const Color(0xFFE5EFFF);
? const Color.fromRGBO(111, 134, 165, 0.2)
: const Color.fromRGBO(11, 134, 165, 0.2);
static Color get orange10 =>
_isDarkMode
? const Color.fromRGBO(131, 120, 105, 0.2)
: const Color(0xFFFFF2DE);
// Primary color variations
static const Color primary2 = Color(0xFFE5EFFF);