aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/UIStore.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/stores/UIStore.js b/src/stores/UIStore.js
index ba2cffb73..05e3f71fe 100644
--- a/src/stores/UIStore.js
+++ b/src/stores/UIStore.js
@@ -72,8 +72,9 @@ export default class UIStore extends Store {
72 } 72 }
73 73
74 @computed get theme() { 74 @computed get theme() {
75 if (this.isDarkThemeActive || this.stores.settings.app.darkMode) return theme('dark'); 75 const themeId = (this.isDarkThemeActive || this.stores.settings.app.darkMode) ? 'dark' : 'default';
76 return theme('default'); 76 const accentColor = this.stores.settings.app.accentColor;
77 return theme(themeId, accentColor);
77 } 78 }
78 79
79 // Actions 80 // Actions