Answers for "read css variable from javascript"

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
4

how to change css variable in javascript

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

Code answers related to "read css variable from javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language