10 lines
297 B
JavaScript
10 lines
297 B
JavaScript
|
function addThemeColorCssVars() {
|
||
|
const key = '__THEME_COLOR__'
|
||
|
const defaultColor = '#316c72'
|
||
|
const themeColor = window.localStorage.getItem(key) || defaultColor
|
||
|
const cssVars = `--primary-color: ${themeColor}`
|
||
|
document.documentElement.style.cssText = cssVars
|
||
|
}
|
||
|
|
||
|
addThemeColorCssVars()
|