diff --git a/lib/core/custom_theme.dart b/lib/core/custom_theme.dart index 12ac4a8..2c18073 100644 --- a/lib/core/custom_theme.dart +++ b/lib/core/custom_theme.dart @@ -5,14 +5,32 @@ class CustomTheme { CustomTheme._(); // Private constructor to prevent instantiation // ==================== Colors ==================== + + /// Primary color of the app theme static Color primaryColor = const Color(0xFF7505E4); + + /// Secondary color of the app theme static Color secondaryColor = const Color(0xFFAFA2FF); + + /// Background color of the app theme static Color backgroundColor = const Color(0xFF0B0B0B); + + /// Default color for boxes and containers static Color boxColor = const Color(0xFF101010); - static Color onBoxColor = const Color(0xFF181818); + + /// Default border color for boxes and containers static Color boxBorder = const Color(0xFF272727); + + /// Color for boxes and containers displayed on boxes + static Color onBoxColor = const Color(0xFF181818); + + /// Text color used throughout the app static const Color textColor = Colors.white; + + /// Selected color for the [NavbarItem] static Color navBarItemSelectedColor = primaryColor.withGreen(100); + + /// Unselected color for the [NavbarItem] static Color navBarItemUnselectedColor = Colors.grey.shade400; // ==================== Border Radius ====================