aboutsummaryrefslogtreecommitdiff
path: root/src/components/style_switcher/style_switcher.js
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2018-03-31 21:14:36 +0300
committerHenry Jameson <me@hjkos.com>2018-04-07 16:34:11 +0300
commitaa0564406a95824cc45c815571292716b65806a1 (patch)
treef3a282f88afe1e5ed6f9f08e0649bdf1bf2a892a /src/components/style_switcher/style_switcher.js
parent936ca1a38cc1b9206dea8970eda6885fc7d4391d (diff)
getting rid of baseXX, some small fixes. Seems to be usable.
Diffstat (limited to 'src/components/style_switcher/style_switcher.js')
-rw-r--r--src/components/style_switcher/style_switcher.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/style_switcher/style_switcher.js b/src/components/style_switcher/style_switcher.js
index a762f914..6e414338 100644
--- a/src/components/style_switcher/style_switcher.js
+++ b/src/components/style_switcher/style_switcher.js
@@ -21,10 +21,10 @@ export default {
})
},
mounted () {
- this.bgColorLocal = rgbstr2hex(this.$store.state.config.colors['base00'])
- this.fgColorLocal = rgbstr2hex(this.$store.state.config.colors['base02'])
- this.textColorLocal = rgbstr2hex(this.$store.state.config.colors['base05'])
- this.linkColorLocal = rgbstr2hex(this.$store.state.config.colors['base08'])
+ this.bgColorLocal = rgbstr2hex(this.$store.state.config.colors.bg)
+ this.fgColorLocal = rgbstr2hex(this.$store.state.config.colors.lightBg)
+ this.textColorLocal = rgbstr2hex(this.$store.state.config.colors.fg)
+ this.linkColorLocal = rgbstr2hex(this.$store.state.config.colors.link)
},
methods: {
setCustomTheme () {