Skip to content

Commit

Permalink
Dark theme borders: reduce opacity (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
Feichtmeier authored Jan 7, 2023
1 parent 2053507 commit 46a4c76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/themes/common_themes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ AppBarTheme _createLightAppBar(ColorScheme colorScheme) {
AppBarTheme _createDarkAppBarTheme(ColorScheme colorScheme) {
return AppBarTheme(
shape: Border(
bottom: BorderSide(color: colorScheme.onSurface.withOpacity(0.2)),
bottom: BorderSide(color: colorScheme.onSurface.withOpacity(0.07)),
),
scrolledUnderElevation: kAppBarElevation,
surfaceTintColor: colorScheme.background,
Expand Down Expand Up @@ -326,7 +326,7 @@ ThemeData createYaruDarkTheme({
scaffoldBackgroundColor: colorScheme.background,
bottomAppBarColor: colorScheme.surface,
cardColor: colorScheme.surface,
dividerColor: colorScheme.onSurface.withOpacity(0.12),
dividerColor: colorScheme.onSurface.withOpacity(0.07),
backgroundColor: colorScheme.background,
dialogBackgroundColor: colorScheme.background,
errorColor: colorScheme.error,
Expand Down

0 comments on commit 46a4c76

Please sign in to comment.