···5 return getComputedStyle(document.body).getPropertyValue(variable).trim();
6}
70000008/**
9 * Converts a CSS color string to a hue value in the 0-1 range
10 */
···5 return getComputedStyle(document.body).getPropertyValue(variable).trim();
6}
78+9+export function getHexCSSVar(variable: string) {
10+ return convertCSSToHex(getCSSVar(variable));
11+}
12+13+14/**
15 * Converts a CSS color string to a hue value in the 0-1 range
16 */