Skip to content

Commit

Permalink
Merge pull request #118 from lamarios/feature/fix_light_theme_not_wor…
Browse files Browse the repository at this point in the history
…king

fix light theme not working anymore
  • Loading branch information
lamarios authored Apr 14, 2023
2 parents f765ac7 + 483e33c commit 27250fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class MyApp extends StatelessWidget {
title: 'Clipious',
theme: ThemeData(
useMaterial3: true,
colorScheme: darkColorScheme,
colorScheme: isTv ? darkColorScheme : lightColorScheme,
),
darkTheme: ThemeData(useMaterial3: true, colorScheme: darkColorScheme),
home: Shortcuts(
Expand Down

0 comments on commit 27250fb

Please sign in to comment.