Returns a CSS variable from a CSS style declaration, or returning fallback.
// These will all access --my-var getFromStyles(getComputedStyle(element), `--my-var`, `red`); getFromStyles(getComputedStyle(element), `my-var`, `red`); getFromStyles(getComputedStyle(element), `my_var`, `red`);
Returns a CSS variable from a CSS style declaration, or returning
fallback
.