Apply the selection-highlight blend to a prefix descriptor.
(prefix: P, theme: AppTheme)
| 843 | |
| 844 | /** Apply the selection-highlight blend to a prefix descriptor. */ |
| 845 | function applySelectionPrefix<P extends { bg: string }>(prefix: P, theme: AppTheme): P { |
| 846 | return { |
| 847 | ...prefix, |
| 848 | bg: selectionHighlightBg(prefix.bg, theme), |
| 849 | }; |
| 850 | } |
| 851 | |
| 852 | /** Render one split-view cell as prefix + gutter + content spans. */ |
| 853 | function renderSplitCell( |
no test coverage detected