From 93d6a8296ac3f3d65941f46db906e2db2a2e2640 Mon Sep 17 00:00:00 2001 From: SethCohen Date: Tue, 14 Mar 2023 05:19:41 -0400 Subject: [PATCH] style: more theme changes --- src/lib/themes/comfy.dart | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/src/lib/themes/comfy.dart b/src/lib/themes/comfy.dart index 1a4e81d..7231ea3 100644 --- a/src/lib/themes/comfy.dart +++ b/src/lib/themes/comfy.dart @@ -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(Colors.transparent), + ), + textButtonTheme: TextButtonThemeData( + style: ButtonStyle( + foregroundColor: + MaterialStateProperty.all(const Color(0xFFF8CDC6)), + overlayColor: MaterialStateProperty.all(const Color(0xFF425366)), + ), ), cardTheme: const CardTheme( elevation: 0,