set css variables from javascript code example
Example 1: how to change a css variable with javascript
var root = document.querySelector(':root');
root.style.setProperty('--variable', 'lightblue');
/or/
root.style.setProperty('--variable', myColor);
Example 2: javascript get css variable
let docStyle = getComputedStyle(document.documentElement);
let myVarVal docStyle.getPropertyValue('--my-variable-name');
docStyle.setProperty('--my-variable-name', '#fff');
Example 3: how to change css variable in javascript
document.documentElement.style.setProperty("--main-background-color", "green");
Example 4: how to change css variable in javascript
document.documentElement.setAttribute("style", "--main-background-color: green");
Example 5: how to change css variable in javascript
document.documentElement.style.cssText = "--main-background-color: red";
Example 6: js set css variable
document.documentElement.style.setProperty("--main-background-color", "green");