(color: string, theme: Theme)
| 840 | } |
| 841 | |
| 842 | function tryModifyBgColor(color: string, theme: Theme) { |
| 843 | return handleRawColorValue(color, theme, modifyBackgroundColor); |
| 844 | } |
| 845 | |
| 846 | function tryModifyTextColor(color: string, theme: Theme) { |
| 847 | return handleRawColorValue(color, theme, modifyForegroundColor); |
no test coverage detected