summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/app/init.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/client/app/init.ts b/src/client/app/init.ts
index 5b26f4866d..2f18030f0d 100644
--- a/src/client/app/init.ts
+++ b/src/client/app/init.ts
@@ -387,6 +387,18 @@ export default (callback: (launch: (router: VueRouter) => [Vue, MiOS]) => void,
});
//#endregion
+ // Reapply current theme
+ try {
+ const themeName = os.store.state.device.darkmode ? os.store.state.device.darkTheme : os.store.state.device.lightTheme;
+ const themes = os.store.state.device.themes.concat(builtinThemes);
+ const theme = themes.find(t => t.id == themeName);
+ if (theme) {
+ applyTheme(theme);
+ }
+ } catch (e) {
+ console.log(`Cannot reapply theme. ${e}`);
+ }
+
//#region shadow
const shadow = '0 3px 8px rgba(0, 0, 0, 0.2)';
const shadowRight = '4px 0 4px rgba(0, 0, 0, 0.1)';