Answers for "how to get a variable from css in javascripy"

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

js set css variable

document.documentElement.style.setProperty("--main-background-color", "green");
Posted by: Guest on January-07-2021

Code answers related to "how to get a variable from css in javascripy"

Code answers related to "Javascript"

Browse Popular Code Answers by Language