2 Commits

Author SHA1 Message Date
d931e85e9f changed member tile color 2025-11-16 18:36:54 +01:00
a707990356 added new color: onBoxColor 2025-11-16 18:36:38 +01:00
2 changed files with 2 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ class CustomTheme {
static Color secondaryColor = const Color(0xFFAFA2FF); static Color secondaryColor = const Color(0xFFAFA2FF);
static Color backgroundColor = const Color(0xFF0B0B0B); static Color backgroundColor = const Color(0xFF0B0B0B);
static Color boxColor = const Color(0xFF101010); static Color boxColor = const Color(0xFF101010);
static Color onBoxColor = const Color(0xFF181818);
static Color boxBorder = const Color(0xFF272727); static Color boxBorder = const Color(0xFF272727);
static AppBarTheme appBarTheme = AppBarTheme( static AppBarTheme appBarTheme = AppBarTheme(

View File

@@ -59,7 +59,7 @@ class GroupTile extends StatelessWidget {
horizontal: 10, horizontal: 10,
), ),
decoration: BoxDecoration( decoration: BoxDecoration(
color: Colors.black38, color: CustomTheme.onBoxColor,
borderRadius: BorderRadius.circular(12), borderRadius: BorderRadius.circular(12),
), ),
child: Skeleton.ignore( child: Skeleton.ignore(