Is there a way to access a css variable from javascript? Here my css variable declaration.
:root {
--color-font-general: #336699;
}
Just the standard way:
getComputedStyle
getPropertyValue
to get the value of the desired propertygetComputedStyle(element).getPropertyValue('--color-font-general');
Example:
var style = getComputedStyle(document.body)
console.log( style.getPropertyValue('--bar') ) // #336699
console.log( style.getPropertyValue('--baz') ) // calc(2px*2)
:root { --foo:#336699; --bar:var(--foo); --baz:calc(2px*2); }