diff options
| author | Henry Jameson <me@hjkos.com> | 2020-01-13 01:54:56 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-01-13 01:54:56 +0200 |
| commit | fa2fcc882737c8c057fd12d4cc1a85d67f3b672e (patch) | |
| tree | 18611c23f7b3ce77b7c72e706a8f0f8ec5265b6a /src | |
| parent | 8f63bbb64fa2860e73d8562de9d6c62629a8668f (diff) | |
better fallbacks in UI
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/style_switcher/style_switcher.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/style_switcher/style_switcher.vue b/src/components/style_switcher/style_switcher.vue index 1381f1fb..c1ec7c9a 100644 --- a/src/components/style_switcher/style_switcher.vue +++ b/src/components/style_switcher/style_switcher.vue @@ -251,7 +251,7 @@ <ColorInput v-model="panelColorLocal" name="panelColor" - :fallback="fgColorLocal" + :fallback="previewTheme.colors.panel" :label="$t('settings.background')" /> <OpacityInput @@ -286,7 +286,7 @@ <ColorInput v-model="topBarColorLocal" name="topBarColor" - :fallback="fgColorLocal" + :fallback="previewTheme.colors.topBar" :label="$t('settings.background')" /> <ColorInput @@ -309,7 +309,7 @@ <ColorInput v-model="inputColorLocal" name="inputColor" - :fallback="fgColorLocal" + :fallback="previewTheme.colors.input" :label="$t('settings.background')" /> <OpacityInput @@ -331,7 +331,7 @@ <ColorInput v-model="btnColorLocal" name="btnColor" - :fallback="fgColorLocal" + :fallback="previewTheme.colors.btn" :label="$t('settings.background')" /> <OpacityInput |
