diff --git a/lib/utilities/text_styles.dart b/lib/utilities/text_styles.dart index d33ee2cd5..11a1c3a97 100644 --- a/lib/utilities/text_styles.dart +++ b/lib/utilities/text_styles.dart @@ -1123,6 +1123,12 @@ class STextStyles { fontWeight: FontWeight.w600, fontSize: 14, ); + case ThemeType.forest: + return GoogleFonts.inter( + color: _theme(context).textDark, + fontWeight: FontWeight.w600, + fontSize: 14, + ); } } @@ -1158,6 +1164,12 @@ class STextStyles { fontWeight: FontWeight.w500, fontSize: 14, ); + case ThemeType.forest: + return GoogleFonts.inter( + color: _theme(context).textDark, + fontWeight: FontWeight.w500, + fontSize: 14, + ); } } @@ -1234,6 +1246,12 @@ class STextStyles { fontWeight: FontWeight.w500, fontSize: 10, ); + case ThemeType.forest: + return GoogleFonts.inter( + color: _theme(context).textDark, + fontWeight: FontWeight.w500, + fontSize: 10, + ); } }