This repository was archived by the owner on Nov 8, 2022. It is now read-only.
This repository was archived by the owner on Nov 8, 2022. It is now read-only.
theme editor #840
Open
Description
use css-variable in styled-component
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');