feat: add search with preview

This commit is contained in:
2026-02-02 20:32:19 -06:00
parent 2aa49faad5
commit 155d8c4c1d
7 changed files with 584 additions and 2 deletions

View File

@@ -105,4 +105,13 @@ var (
ErrorStyle = lipgloss.NewStyle().
Foreground(ColorError).
Bold(true)
// Search overlay styles
SearchMatchStyle = lipgloss.NewStyle().
Background(ColorAccent).
Foreground(ColorBackground).
Bold(true)
SearchSelectedStyle = lipgloss.NewStyle().
Background(ColorHighlight)
)