diff --git a/app/client/src/App.vue b/app/client/src/App.vue index d350c98..7a88d12 100644 --- a/app/client/src/App.vue +++ b/app/client/src/App.vue @@ -149,7 +149,7 @@ - + mdi-arrow-left diff --git a/app/client/src/main.js b/app/client/src/main.js index 8656d69..fb2d67b 100644 --- a/app/client/src/main.js +++ b/app/client/src/main.js @@ -526,6 +526,11 @@ new Vue({ let res = await this.$axios.get('/settings'); this.settings = res.data; this.$vuetify.theme.themes.dark.primary = this.settings.primaryColor; + this.$vuetify.theme.themes.light.primary = this.settings.primaryColor; + if (this.settings.lightTheme) { + this.$vuetify.theme.dark = false; + this.$vuetify.theme.light = true; + } i18n.locale = this.settings.language; this.volume = this.settings.volume; diff --git a/app/client/src/views/Settings.vue b/app/client/src/views/Settings.vue index fdd1185..03fc423 100644 --- a/app/client/src/views/Settings.vue +++ b/app/client/src/views/Settings.vue @@ -153,6 +153,15 @@ {{$t("Show autocomplete in search")}} + + + + + + + {{$t("Light theme")}} + +