diff --git a/lib/core/theme/app_dark_theme_data.dart b/lib/core/theme/app_dark_theme_data.dart index 56f2999..dee7ceb 100644 --- a/lib/core/theme/app_dark_theme_data.dart +++ b/lib/core/theme/app_dark_theme_data.dart @@ -73,6 +73,7 @@ ThemeData appDarkThemeData() { textStyle: appTextTheme.titleSmall?.copyWith( color: Colors.white, ), + color: const Color.fromRGBO(9, 35, 55, 1), ), /// Text theme @@ -107,6 +108,8 @@ ThemeData appDarkThemeData() { color: Color.fromRGBO(50, 45, 120, 1), ), ), - ), bottomAppBarTheme: const BottomAppBarTheme(color: Color.fromRGBO(9, 35, 55, 1)), + ), + bottomAppBarTheme: + const BottomAppBarTheme(color: Color.fromRGBO(9, 35, 55, 1)), ); }