Skip to content

Commit

Permalink
fix/properly define dark mode colors (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoenig134 authored Sep 19, 2024
1 parent 90fac3d commit b8cb148
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apps/enmeshed/lib/themes/color_schemes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,13 @@ final lightColorScheme = SeedColorScheme.fromSeeds(
final darkColorScheme = SeedColorScheme.fromSeeds(
brightness: Brightness.dark,
primaryKey: _primarySeedColor,
primaryContainer: _primarySeedColor,
secondaryKey: _secondarySeedColor,
secondaryContainer: _secondarySeedColor,
tertiaryKey: _tertiarySeedColor,
tertiaryContainer: _tertiarySeedColor,
errorKey: _errorSeedColor,
errorContainer: _errorSeedColor,
tones: FlexTones.material(Brightness.dark),
);

Expand Down

0 comments on commit b8cb148

Please sign in to comment.