Skip to content

Commit

Permalink
Fix broken theming in Dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
lockieRichter committed Mar 17, 2024
1 parent fa32f75 commit c7d5f76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ class DanteXApp extends ConsumerWidget {
theme: ThemeData(
colorSchemeSeed: Colors.white,
brightness: Brightness.light,
textTheme: GoogleFonts.nunitoTextTheme(),
fontFamily: GoogleFonts.nunito().fontFamily,
useMaterial3: true,
),
darkTheme: ThemeData(
colorSchemeSeed: Colors.white,
brightness: Brightness.dark,
textTheme: GoogleFonts.nunitoTextTheme(),
fontFamily: GoogleFonts.nunito().fontFamily,
useMaterial3: true,
),
);
Expand Down

0 comments on commit c7d5f76

Please sign in to comment.