Skip to content

Commit

Permalink
Put Colors.white in darkTheme textStyle
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierPaquet-Rapold committed Apr 13, 2024
1 parent 81e5509 commit 9ebb93f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/ui/utils/app_theme.dart
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,16 @@ class AppTheme {
titleSmall: const TextStyle(
fontSize: 20,
fontWeight: FontWeight.w400,
color: Colors.white,
),
bodySmall: const TextStyle(
fontSize: 14,
fontSize: 14, color: Colors.white,
),
bodyMedium: const TextStyle(
fontSize: 16,
fontSize: 16, color: Colors.white,
),
bodyLarge: const TextStyle(
fontSize: 18,
fontSize: 18, color: Colors.white,
),
),
bottomNavigationBarTheme: darkTheme.bottomNavigationBarTheme
Expand Down

0 comments on commit 9ebb93f

Please sign in to comment.