From 92062fa14a937e528d430c93671c5337558df4e3 Mon Sep 17 00:00:00 2001 From: sneurlax Date: Fri, 10 Feb 2023 12:07:30 -0600 Subject: [PATCH] add forest text styles --- lib/utilities/text_styles.dart | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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, + ); } }