feat: use glow renderer

This commit is contained in:
ysandler
2026-02-01 18:46:18 -06:00
parent 1eae04fc60
commit d24e4f340e
4 changed files with 161 additions and 24 deletions

View File

@@ -48,4 +48,40 @@ var (
Foreground(secondaryColor).
Italic(true).
MarginTop(1)
// List command styles
ListTitleStyle = lipgloss.NewStyle().
Bold(true).
Foreground(lipgloss.Color("213")). // Magenta/pink
MarginBottom(1)
CountStyle = lipgloss.NewStyle().
Foreground(lipgloss.Color("244")). // Dimmed gray
Italic(true)
EntryKeyStyle = lipgloss.NewStyle().
Bold(true).
Foreground(lipgloss.Color("154")) // Bright green
EntryKeySelected = lipgloss.NewStyle().
Bold(true).
Foreground(lipgloss.Color("86")) // Cyan
FilenameStyle = lipgloss.NewStyle().
Foreground(lipgloss.Color("241")) // Gray
TagsStyle = lipgloss.NewStyle().
Foreground(lipgloss.Color("226")) // Yellow
SymlinkIcon = "➜ "
SymlinkIndicator = "🔗"
DescriptionStyle = lipgloss.NewStyle().
Foreground(lipgloss.Color("243")). // Dimmed text
PaddingLeft(2)
MetadataStyle = lipgloss.NewStyle().
Foreground(lipgloss.Color("245")). // Dimmed gray
PaddingLeft(4)
)