package tui import "github.com/charmbracelet/lipgloss" // ANSI palette indices so colours adapt to the terminal theme (omaterm-friendly). var ( accent = lipgloss.Color("12") // bright blue good = lipgloss.Color("10") // green bad = lipgloss.Color("9") // red subtle = lipgloss.Color("8") // grey ) var ( titleStyle = lipgloss.NewStyle().Bold(true).Foreground(accent) selectedStyle = lipgloss.NewStyle().Bold(true).Foreground(accent) descStyle = lipgloss.NewStyle().Foreground(subtle) helpStyle = lipgloss.NewStyle().Foreground(subtle) hintStyle = lipgloss.NewStyle().Foreground(subtle).Italic(true) errStyle = lipgloss.NewStyle().Foreground(bad) okStyle = lipgloss.NewStyle().Foreground(good) urlStyle = lipgloss.NewStyle().Bold(true).Underline(true).Foreground(good) )