summaryrefslogtreecommitdiff
path: root/internal/ui
diff options
context:
space:
mode:
authorPaul Bütow <1224732+snonux@users.noreply.github.com>2025-06-20 10:00:58 +0300
committerPaul Bütow <1224732+snonux@users.noreply.github.com>2025-06-20 10:00:58 +0300
commitc4916466708f48f90cd870479bafcb9510932a64 (patch)
tree603e53149e754f0d86c24c53653ef1b60eb28db4 /internal/ui
parent6d87b5190d784fa73bcaeb23dfeaafa9544a719b (diff)
Change priority colors to use backgrounds
Diffstat (limited to 'internal/ui')
-rw-r--r--internal/ui/table.go6
1 files changed, 3 insertions, 3 deletions
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
}