Updated text color

This commit is contained in:
2026-01-19 16:07:12 +01:00
parent 53a33ca2e1
commit c625174017

View File

@@ -7,25 +7,25 @@ class CustomTheme {
// ==================== Colors ==================== // ==================== Colors ====================
/// Primary color of the app theme /// Primary color of the app theme
static Color primaryColor = const Color(0xFFef681f); static const Color primaryColor = Color(0xFFef681f);
/// Secondary color of the app theme /// Secondary color of the app theme
static Color secondaryColor = const Color(0xFFf2a981); static const Color secondaryColor = Color(0xFFf2a981);
/// Background color of the app theme /// Background color of the app theme
static Color backgroundColor = const Color(0xFF0B0B0B); static const backgroundColor = Color(0xFF0B0B0B);
/// Default color for boxes and containers /// Default color for boxes and containers
static Color boxColor = const Color(0xFF101010); static const Color boxColor = Color(0xFF101010);
/// Default border color for boxes and containers /// Default border color for boxes and containers
static Color boxBorder = const Color(0xFF272727); static const Color boxBorder = Color(0xFF272727);
/// Color for boxes and containers displayed on boxes /// Color for boxes and containers displayed on boxes
static Color onBoxColor = const Color(0xFF181818); static const Color onBoxColor = Color(0xFF181818);
/// Text color used throughout the app /// Text color used throughout the app
static const Color textColor = Colors.white; static const Color textColor = Color(0xFFFFFFFF);
/// Selected color for the [NavbarItem] /// Selected color for the [NavbarItem]
static Color navBarItemSelectedColor = primaryColor.withGreen(100); static Color navBarItemSelectedColor = primaryColor.withGreen(100);