Well, I want to use some css vars in my js code.
Here is the part of my .css file and the .js code:
const root = document.querySelector(":root");
const msgColor = getComputedStyle(root).getPropertyValue("--msg-color");
console.log(msgColor);
:root {
--msg-color: crimson;
--msg-text: floralwhite;
}
The problem is that in chrome, safari and the new Edge I'm getting right the color value in my constant, but in firefox, doesn't working.
Any ideas? Thanks.