diff --git a/packages/client/src/init.ts b/packages/client/src/init.ts index 227656939..deb8d9679 100644 --- a/packages/client/src/init.ts +++ b/packages/client/src/init.ts @@ -382,6 +382,8 @@ function checkForSplash() { } else { document.documentElement.style.setProperty("--blur", "none"); } + const theme = defaultStore.state.darkMode ? ColdDeviceStorage.get("darkTheme") : ColdDeviceStorage.get("lightTheme"); + applyTheme(theme); }, { immediate: true }, );