From c4916466708f48f90cd870479bafcb9510932a64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20B=C3=BCtow?= <1224732+snonux@users.noreply.github.com> Date: Fri, 20 Jun 2025 10:00:58 +0300 Subject: Change priority colors to use backgrounds --- internal/ui/table.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'internal/ui') diff --git a/internal/ui/table.go b/internal/ui/table.go index a14b392..3d42492 100644 --- a/internal/ui/table.go +++ b/internal/ui/table.go @@ -222,11 +222,11 @@ func formatPriority(p string) string { style := lipgloss.NewStyle() switch p { case "L": - style = style.Foreground(lipgloss.Color("10")) + style = style.Background(lipgloss.Color("10")) case "M": - style = style.Foreground(lipgloss.Color("12")) + style = style.Background(lipgloss.Color("12")) case "H": - style = style.Foreground(lipgloss.Color("9")) + style = style.Background(lipgloss.Color("9")) default: return p } -- cgit v1.2.3