(theme: AppTheme)
| 23 | |
| 24 | /** Return the neutral active-hunk rail color for the current theme. */ |
| 25 | export function neutralRailColor(theme: AppTheme) { |
| 26 | return theme.lineNumberFg; |
| 27 | } |
| 28 | |
| 29 | /** Dim a rail color for inactive hunks by blending toward the panel background. */ |
| 30 | export function dimRailColor(color: string, theme: AppTheme) { |
no outgoing calls
no test coverage detected