Skip to content

Commit

Permalink
Revert "fix: remove windows background"
Browse files Browse the repository at this point in the history
This reverts commit 6942964.
  • Loading branch information
KRTirtho committed Dec 9, 2022
1 parent fda5393 commit 359fcee
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/themes/light_theme.dart
Original file line number Diff line number Diff line change
Expand Up @@ -126,13 +126,19 @@ final windowsTheme = fluent_ui.ThemeData.light().copyWith(
iconSize: fluent_ui.ButtonState.all(20),
),
),
navigationPaneTheme: fluent_ui.NavigationPaneThemeData(
backgroundColor: Colors.grey[100]?.withOpacity(0.5),
),
);
final windowsDarkTheme = fluent_ui.ThemeData.dark().copyWith(
buttonTheme: fluent_ui.ButtonThemeData(
iconButtonStyle: fluent_ui.ButtonStyle(
iconSize: fluent_ui.ButtonState.all(20),
),
),
navigationPaneTheme: fluent_ui.NavigationPaneThemeData(
backgroundColor: Colors.grey[900]?.withOpacity(0.5),
),
);
final macosTheme = MacosThemeData.light().copyWith(
pushButtonTheme: const PushButtonThemeData(
Expand Down

0 comments on commit 359fcee

Please sign in to comment.