dark colors added
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user