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

fix: theming background color #405

Merged
merged 3 commits into from
Dec 26, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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(0xFFFAFAFA);
static const Color porcelain = Color(0xFFFFFFFF);
Feichtmeier marked this conversation as resolved.
Show resolved Hide resolved

/// Inkstone
static const Color inkstone = Color(0xFF3B3B3B);
Expand Down
1 change: 0 additions & 1 deletion lib/src/widgets/inherited_theme.dart
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,6 @@ extension _YaruThemeDataX on ThemeData {
return copyWith(
extensions: data.extensions,
pageTransitionsTheme: data.pageTransitionsTheme,
useMaterial3: data.useMaterial3,
visualDensity: data.visualDensity,
);
}
Expand Down
Loading