Deepen theme semantic color coverage

This commit is contained in:
vrubelroman 2026-04-23 21:18:15 +03:00
parent 60e3a9c0f8
commit ce84789edb
3 changed files with 94 additions and 22 deletions

View file

@ -222,7 +222,7 @@ func renderPaneHeader(pane BrowserPane, cfg config.Config, palette theme.Palette
Foreground(palette.Text).
Bold(active)
if active {
pathStyle = pathStyle.Foreground(palette.TextFile)
pathStyle = pathStyle.Foreground(palette.ActivePath)
}
return lipgloss.NewStyle().
@ -292,11 +292,11 @@ func renderEntryRow(entry vfs.Entry, cfg config.Config, width int, selected bool
rowBackground := baseBackground
switch {
case marked:
rowBackground = palette.Danger
rowBackground = palette.Marked
case selected:
rowBackground = palette.Selection
case hovered:
rowBackground = palette.PanelElevated
rowBackground = palette.Hover
}
parts := make([]string, 0, len(columns))