Skip to content

Commit

Permalink
Make dark theme bg darker (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jupi007 committed Nov 5, 2021
1 parent 9c73c15 commit 46f440b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/src/theme.dart
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ final _darkColorScheme = ColorScheme.fromSwatch(
primarySwatch: _primarySwatchColor,
primaryColorDark: yaru.Colors.coolGrey,
accentColor: yaru.Colors.orange,
cardColor: yaru.Colors.coolGrey,
backgroundColor: yaru.Colors.coolGrey,
cardColor: yaru.Colors.jet,
backgroundColor: yaru.Colors.jet,
errorColor: yaru.Colors.red,
brightness: Brightness.dark,
);
Expand Down Expand Up @@ -81,7 +81,7 @@ final lightTheme = ThemeData(
final darkTheme = ThemeData(
tabBarTheme: TabBarTheme(labelColor: _darkColorScheme.onBackground),
dialogTheme: DialogTheme(
backgroundColor: yaru.Colors.jet,
backgroundColor: yaru.Colors.coolGrey,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(6),
side: BorderSide(color: Colors.white.withOpacity(0.2)))),
Expand Down Expand Up @@ -312,7 +312,7 @@ final _appBarLightTheme = AppBarTheme(
final _appBarDarkTheme = AppBarTheme(
elevation: 1.0,
systemOverlayStyle: SystemUiOverlayStyle.dark,
backgroundColor: yaru.Colors.inkstone,
backgroundColor: yaru.Colors.jet,
foregroundColor: yaru.Colors.porcelain,
titleTextStyle: textTheme.headline6!.copyWith(
color: yaru.Colors.porcelain,
Expand Down

0 comments on commit 46f440b

Please sign in to comment.