fix: switch new installs to OpenChamber themes

New installs now default to OpenChamber light and dark themes.
Existing Flexoki theme preferences continue to be preserved during migration.
This commit is contained in:
Bohdan Triapitsyn
2026-09-04 12:51:49 +03:00
parent 0d8709a72e
commit 8afec51480
2 changed files with 31 additions and 2 deletions
@@ -692,8 +692,8 @@ export const createSettingsRuntime = (deps) => {
return { settings, changed: false };
}
const defaultLight = 'flexoki-light';
const defaultDark = 'flexoki-dark';
const defaultLight = 'openchamber-light';
const defaultDark = 'openchamber-dark';
let nextLightThemeId = hasLight ? settings.lightThemeId : undefined;
let nextDarkThemeId = hasDark ? settings.darkThemeId : undefined;