(rgb: RGBA, theme: Theme)
| 90 | } |
| 91 | |
| 92 | export function modifyColor(rgb: RGBA, theme: Theme): string { |
| 93 | return modifyColorWithCache(rgb, theme, noopHSL); |
| 94 | } |
| 95 | |
| 96 | function modifyAndRegisterColor( |
| 97 | type: 'background' | 'text' | 'border', |
nothing calls this directly
no test coverage detected