diff options
| author | Henry Jameson <me@hjkos.com> | 2020-01-22 01:28:46 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-01-22 01:28:46 +0200 |
| commit | 644ce497a0f118b2e5050a2e45b67450915c53f0 (patch) | |
| tree | a287dec888bca62d2ff9ff83c6df767069d38d86 /src/components/style_switcher/style_switcher.vue | |
| parent | 803edcb53a664382f9db9a00ccebe8efee1873ef (diff) | |
lightBg -> highlight because it causes issues with v2
Diffstat (limited to 'src/components/style_switcher/style_switcher.vue')
| -rw-r--r-- | src/components/style_switcher/style_switcher.vue | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/components/style_switcher/style_switcher.vue b/src/components/style_switcher/style_switcher.vue index 61f8800a..79c2fcd3 100644 --- a/src/components/style_switcher/style_switcher.vue +++ b/src/components/style_switcher/style_switcher.vue @@ -518,27 +518,27 @@ /> </div> <div class="color-item"> - <h4>{{ $t('settings.style.advanced_colors.lightBg') }}</h4> + <h4>{{ $t('settings.style.advanced_colors.highlight') }}</h4> <ColorInput - v-model="lightBgColorLocal" - name="lightBg" + v-model="highlightColorLocal" + name="highlight" :label="$t('settings.background')" - :fallback="previewTheme.colors.lightBg" + :fallback="previewTheme.colors.highlight" /> <ColorInput - v-model="lightBgTextColorLocal" - name="lightBgText" + v-model="highlightTextColorLocal" + name="highlightText" :label="$t('settings.text')" - :fallback="previewTheme.colors.lightBgText" + :fallback="previewTheme.colors.highlightText" /> - <ContrastRatio :contrast="previewContrast.lightBgText" /> + <ContrastRatio :contrast="previewContrast.highlightText" /> <ColorInput - v-model="lightBgLinkColorLocal" - name="lightBgLink" + v-model="highlightLinkColorLocal" + name="highlightLink" :label="$t('settings.links')" - :fallback="previewTheme.colors.lightBgLink" + :fallback="previewTheme.colors.highlightLink" /> - <ContrastRatio :contrast="previewContrast.lightBgLink" /> + <ContrastRatio :contrast="previewContrast.highlightLink" /> </div> <div class="color-item"> <h4>{{ $t('settings.style.advanced_colors.selectedPost') }}</h4> |
