Skip to content

Commit c340032

Browse files
fix: use Catppuccin Mocha palette in TUI (correct hex values)
1 parent 25480e2 commit c340032

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

ui_tui.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
7272
return m, nil
7373
}
7474

75-
// Palette adapted from torlink (github.com/baairon/torlink).
75+
// Catppuccin Mocha palette.
7676
var (
77-
accent = lipgloss.Color("#a78bfa") // violet — active/focus/title
78-
muted = lipgloss.Color("#6b6577") // purple-grey — dividers, labels, inactive
79-
ok = lipgloss.Color("#86d6a2") // soft green — 2xx / good counts
80-
warn = lipgloss.Color("#f0c674") // 3xx
81-
bad = lipgloss.Color("#e57373") // 4xx/5xx / error counts
77+
accent = lipgloss.Color("#cba6f7") // mauve — active/focus/title
78+
muted = lipgloss.Color("#6c7086") // overlay0 — dividers, labels, inactive
79+
ok = lipgloss.Color("#a6e3a1") // green — 2xx / good counts
80+
warn = lipgloss.Color("#fab387") // peach — 3xx
81+
bad = lipgloss.Color("#f38ba8") // red — 4xx/5xx / error counts
8282

8383
titleStyle = lipgloss.NewStyle().Bold(true).Foreground(accent)
8484
labelStyle = lipgloss.NewStyle().Foreground(muted)

0 commit comments

Comments
 (0)