From 2cc352d80d4e02cbc020ddb52f382c86feab370f Mon Sep 17 00:00:00 2001 From: julian <julian@cypherstack.com> Date: Fri, 17 Mar 2023 10:48:13 -0600 Subject: [PATCH] chan theme fixes --- lib/main.dart | 1 + lib/utilities/theme/color_theme.dart | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/main.dart b/lib/main.dart index fe0f86e1d..733e6ebaa 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -354,6 +354,7 @@ class _MaterialAppWithThemeState extends ConsumerState<MaterialAppWithTheme> colorTheme = ForestColors(); break; case "light": + case "chan": default: colorTheme = LightColors(); } diff --git a/lib/utilities/theme/color_theme.dart b/lib/utilities/theme/color_theme.dart index cd1245bc3..4d137dcfe 100644 --- a/lib/utilities/theme/color_theme.dart +++ b/lib/utilities/theme/color_theme.dart @@ -46,7 +46,7 @@ extension ThemeTypeExt on ThemeType { case ThemeType.light: return "Light"; case ThemeType.chan: - return "Chan"; + return "Crypto Chans"; case ThemeType.dark: return "Dark"; case ThemeType.oceanBreeze: