Skip to content

Commit

Permalink
style: more theme changes
Browse files Browse the repository at this point in the history
  • Loading branch information
SethCohen committed Mar 14, 2023
1 parent b1396d1 commit 93d6a82
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions src/lib/themes/comfy.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,25 @@ final comfyTheme = ThemeData(
elevation: 0,
backgroundColor: Colors.transparent,
foregroundColor: Color(0xFF9EC1CC),
titleTextStyle: TextStyle(
color: Color(0xFFF5EFEE),
fontSize: 22,
fontWeight: FontWeight.w500,
),
),
tabBarTheme: const TabBarTheme(
labelColor: Color(0xFFF8CDC6),
unselectedLabelColor: Color(0xFF9EC1CC),
indicator: BoxDecoration(),
tabBarTheme: TabBarTheme(
labelColor: const Color(0xFFF8CDC6),
unselectedLabelColor: const Color(0xFF9EC1CC),
indicator: const BoxDecoration(),
splashFactory: NoSplash.splashFactory,
overlayColor: MaterialStateProperty.all<Color>(Colors.transparent),
),
textButtonTheme: TextButtonThemeData(
style: ButtonStyle(
foregroundColor:
MaterialStateProperty.all<Color>(const Color(0xFFF8CDC6)),
overlayColor: MaterialStateProperty.all<Color>(const Color(0xFF425366)),
),
),
cardTheme: const CardTheme(
elevation: 0,
Expand Down

0 comments on commit 93d6a82

Please sign in to comment.