Answers for "how to make css var with javascript"

3

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
1

how to set css variables in javascript

const docStyles = document.documentElement.style;

		docStyles.setProperty('--accent', '#ffffff');
		docStyles.setProperty('--textColor', '#ffffff');
Posted by: Guest on February-23-2022

Code answers related to "how to make css var with javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language