diff --git a/apps/stage-web/src/App.vue b/apps/stage-web/src/App.vue index 68b2ff65b..4302c0a93 100644 --- a/apps/stage-web/src/App.vue +++ b/apps/stage-web/src/App.vue @@ -18,6 +18,10 @@ watch(settings.language, () => { watch(settings.themeColorsHue, () => { document.documentElement.style.setProperty('--theme-colors-hue', settings.themeColorsHue.value.toString()) }, { immediate: true }) + +watch(settings.themeColorsHueDynamic, () => { + document.documentElement.classList.toggle('dynamic-hue', settings.themeColorsHueDynamic.value) +}, { immediate: true }) + + diff --git a/apps/stage-web/src/pages/settings/themes/index.vue b/apps/stage-web/src/pages/settings/themes/index.vue index 7852fd2e6..9a84aadfc 100644 --- a/apps/stage-web/src/pages/settings/themes/index.vue +++ b/apps/stage-web/src/pages/settings/themes/index.vue @@ -1,10 +1,15 @@