some initial work for user highlight v2

This commit is contained in:
Henry Jameson 2018-11-14 21:53:51 +03:00
parent e7fe2dc9f9
commit 75f0c191dd
3 changed files with 13 additions and 4 deletions

View file

@ -40,8 +40,6 @@ const setStyle = (href, commit) => {
colors[name] = color
})
commit('setOption', { name: 'colors', value: colors })
body.removeChild(baseEl)
const styleEl = document.createElement('style')
@ -74,7 +72,7 @@ const getTextColor = function (bg, text, preserve) {
}
const setColors = (input, commit) => {
const { colorRules, radiiRules } = generatePreset(input)
const { colorRules, radiiRules, theme } = generatePreset(input)
const head = document.head
const body = document.body
body.style.display = 'none'
@ -91,6 +89,7 @@ const setColors = (input, commit) => {
// commit('setOption', { name: 'colors', value: htmlColors })
// commit('setOption', { name: 'radii', value: radii })
commit('setOption', { name: 'customTheme', value: input })
commit('setOption', { name: 'colors', value: theme.colors })
}
const generatePreset = (input) => {