Answers for "modify css variables 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
3

how to change css variable in javascript

document.documentElement.style.setProperty("--main-background-color", "green");
Posted by: Guest on September-11-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language