coderplanets_web icon indicating copy to clipboard operation
coderplanets_web copied to clipboard

theme editor

Open mydearxym opened this issue 5 years ago • 0 comments
trafficstars

use css-variable in styled-component

image

then we can let user to edit those css-variables in bowser, export the data as a theme skin

Get/Set css-variable in javascript


// get
getComputedStyle(document.documentElement)
    .getPropertyValue('--theme-hello')

// set
document.documentElement.style
    .setProperty('--theme-hello', 'pink');

mydearxym avatar Sep 23 '20 06:09 mydearxym