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

Commit

Permalink
fix: updating the background color on light theme
Browse files Browse the repository at this point in the history
  • Loading branch information
BLKKKBVSIK committed Dec 26, 2023
1 parent b703551 commit b792357
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/src/colors.dart
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class YaruColors {
final Color success;

/// Porcelain
static const Color porcelain = Color(0xFFFFFFFF);
static const Color porcelain = Color(0xFFFAFAFA);

/// Inkstone
static const Color inkstone = Color(0xFF3B3B3B);
Expand Down
2 changes: 1 addition & 1 deletion lib/src/themes/common_themes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ ThemeData createYaruLightTheme({
onSecondary: contrastColor(secondary),
secondaryContainer: secondaryContainer,
onSecondaryContainer: contrastColor(secondaryContainer),
background: YaruColors.porcelain,
background: Colors.white,
onBackground: YaruColors.jet,
surface: Colors.white,
onSurface: YaruColors.jet,
Expand Down

0 comments on commit b792357

Please sign in to comment.