(value: string | null | undefined)
| 58 | } |
| 59 | |
| 60 | export function isCssVariableColor(value: string | null | undefined): boolean { |
| 61 | return normalizeThemeColor(value).startsWith("var("); |
| 62 | } |
| 63 | |
| 64 | export function isSupportedColorValue(value: string | null | undefined): boolean { |
| 65 | const normalized = normalizeThemeColor(value); |
no test coverage detected