Answers for "change css vars with js"

14

how to change a css variable with javascript

var root = document.querySelector(':root');
root.style.setProperty('--variable', 'lightblue');
/or/
root.style.setProperty('--variable', myColor);
Posted by: Guest on February-17-2021
2

how to change css variable in javascript

document.documentElement.style.cssText = "--main-background-color: red";
Posted by: Guest on September-11-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language