(color: string)
| 85 | |
| 86 | /** Alias kept for backward compatibility in UI code */ |
| 87 | export function parseHexColor(color: string): RGB | null { |
| 88 | return parseHex(normalizeHexColor(color) || color); |
| 89 | } |
| 90 | |
| 91 | export function hexToRgb( |
| 92 | color: string, |
nothing calls this directly
no test coverage detected