(rgb: RGBA, theme: Theme, shouldRegisterColorVariable = true)
| 305 | } |
| 306 | |
| 307 | export function modifyBorderColor(rgb: RGBA, theme: Theme, shouldRegisterColorVariable = true): string { |
| 308 | if (!shouldRegisterColorVariable) { |
| 309 | return _modifyBorderColor(rgb, theme); |
| 310 | } |
| 311 | return modifyAndRegisterColor('border', rgb, theme, _modifyBorderColor); |
| 312 | } |
| 313 | |
| 314 | export function modifyShadowColor(rgb: RGBA, theme: Theme): string { |
| 315 | return modifyBackgroundColor(rgb, theme); |
no test coverage detected