js设置css变量
document.getElementsByTagName('body')[0].style.setProperty('--theme-color', '#5ECB90')
js获取css变量
document.getElementsByTagName('body')[0].style.getPropertyValue('--theme-color')
css设置css变量
//一般都用:root设置:root {--blue: #1e90ff;--white: #ffffff;--aa: 1212121;
}
css使用css变量
body {background-color: var(--blue);
}