From 3b9cb60aaa6007650933a5459c43b1d594a54b96 Mon Sep 17 00:00:00 2001 From: julian Date: Fri, 20 Jan 2023 15:32:49 -0600 Subject: [PATCH] update text styles --- lib/utilities/text_styles.dart | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/lib/utilities/text_styles.dart b/lib/utilities/text_styles.dart index 00492b478..66decfc50 100644 --- a/lib/utilities/text_styles.dart +++ b/lib/utilities/text_styles.dart @@ -27,6 +27,12 @@ class STextStyles { fontWeight: FontWeight.w500, fontSize: 12, ); + case ThemeType.oledBlack: + return GoogleFonts.inter( + color: _theme(context).textDark3, + fontWeight: FontWeight.w500, + fontSize: 12, + ); } } @@ -787,6 +793,12 @@ class STextStyles { fontWeight: FontWeight.w500, fontSize: 12, ); + case ThemeType.oledBlack: + return GoogleFonts.inter( + color: _theme(context).textDark, + fontWeight: FontWeight.w500, + fontSize: 12, + ); } } @@ -1030,6 +1042,13 @@ class STextStyles { fontSize: 24, height: 24 / 24, ); + case ThemeType.oledBlack: + return GoogleFonts.inter( + color: _theme(context).textDark, + fontWeight: FontWeight.w500, + fontSize: 24, + height: 24 / 24, + ); } }