(baseBg: string, theme: AppTheme)
| 18 | * harder toward the visible highlight color. |
| 19 | */ |
| 20 | export function selectionHighlightBg(baseBg: string, theme: AppTheme) { |
| 21 | return blendHex(theme.selectedHunk, baseBg, SELECTION_BG_BLEND); |
| 22 | } |
| 23 | |
| 24 | /** Return the neutral active-hunk rail color for the current theme. */ |
| 25 | export function neutralRailColor(theme: AppTheme) { |
no test coverage detected