From 0905665b4bf661c9b59c9f0af3352d834d97538c Mon Sep 17 00:00:00 2001 From: Michael Taranto Date: Tue, 3 Oct 2023 16:06:24 +1100 Subject: [PATCH] Default site to Grad Connection theme --- site/src/App/ThemeSetting/ThemeSettingContext.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/App/ThemeSetting/ThemeSettingContext.tsx b/site/src/App/ThemeSetting/ThemeSettingContext.tsx index 3128b78f0ea..f6ee8622602 100644 --- a/site/src/App/ThemeSetting/ThemeSettingContext.tsx +++ b/site/src/App/ThemeSetting/ThemeSettingContext.tsx @@ -11,7 +11,7 @@ import * as themes from 'braid-src/lib/themes'; import type { BraidTheme } from 'braid-src/lib/themes/makeBraidTheme'; type ThemeKey = keyof typeof themes; -const defaultTheme = 'apac' as const; +const defaultTheme = 'gradConnection' as const; interface ThemeSettingsContext { ready: boolean;