Skip to content
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.

Commit

Permalink
Slightly less prominent
Browse files Browse the repository at this point in the history
  • Loading branch information
Feichtmeier committed Aug 15, 2023
1 parent 24bc191 commit 1f8d7f2
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 @@ -622,7 +622,7 @@ SnackBarThemeData _createSnackBarTheme(ColorScheme colorScheme) {
final light = colorScheme.brightness == Brightness.light;
const fg = Colors.white;
return SnackBarThemeData(
backgroundColor: Colors.black.withOpacity(0.8),
backgroundColor: const Color.fromARGB(255, 20, 20, 20).withOpacity(0.8),
closeIconColor: fg,
actionTextColor: Colors.white,
contentTextStyle: const TextStyle(color: fg),
Expand All @@ -638,7 +638,7 @@ SnackBarThemeData _createSnackBarTheme(ColorScheme colorScheme) {
side: light
? BorderSide.none
: BorderSide(
color: fg.withOpacity(0.2),
color: fg.withOpacity(0.14),
width: 1,
),
),
Expand Down

0 comments on commit 1f8d7f2

Please sign in to comment.