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

javascript get css variable

let docStyle = getComputedStyle(document.documentElement);

//get variable
let myVarVal docStyle.getPropertyValue('--my-variable-name');

//set variable
docStyle.setProperty('--my-variable-name', '#fff');
Posted by: Guest on June-15-2020
3

how to change css variable in javascript

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

set css variable from javascript

document.documentElement.style.cssText = "--tab-count: 3";
/or/
document.documentElement.style.setProperty("--tab-count", 5);
/or/
document.documentElement.setAttribute("style", "--tab-count: 5");
Posted by: Guest on October-13-2020
4

how to change css variable in javascript

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

js set css variable

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

Code answers related to "change css variables with javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language