From 9190a1de3f535ba4c3691e9820b294368cd2fa25 Mon Sep 17 00:00:00 2001 From: 01zulfi <85733202+01zulfi@users.noreply.github.com> Date: Tue, 25 Aug 2026 09:46:58 +0500 Subject: [PATCH] web: persist theme's color scheme when setting a new theme (#10270) Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com> --- apps/web/src/stores/theme-store.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web/src/stores/theme-store.ts b/apps/web/src/stores/theme-store.ts index 2f435a928..249521914 100644 --- a/apps/web/src/stores/theme-store.ts +++ b/apps/web/src/stores/theme-store.ts @@ -50,6 +50,7 @@ class ThemeStore extends BaseStore { setTheme = (theme: ThemeDefinition) => { changeDesktopTheme(theme, this.get().followSystemTheme); + Config.set("colorScheme", theme.colorScheme); Config.set(`theme:${theme.colorScheme}`, theme); this.set({ [getKey(theme)]: theme,