diff options
| author | Paul Bütow <1224732+snonux@users.noreply.github.com> | 2025-06-20 10:01:12 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-20 10:01:12 +0300 |
| commit | b425dd80c4f8b060f4c67cb2f2eb9fec9183d519 (patch) | |
| tree | a5662c584e66fc4e02cde43ce558daec09328dcf /internal/ui | |
| parent | 1fcbcc8350bb3df1d304cf720a7f26a210901921 (diff) | |
| parent | c4916466708f48f90cd870479bafcb9510932a64 (diff) | |
Merge pull request #16 from snonux/codex/change-priority-color-coding-to-background-colors
Update priority color display
Diffstat (limited to 'internal/ui')
| -rw-r--r-- | internal/ui/table.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/ui/table.go b/internal/ui/table.go index 1f90c84..208f53d 100644 --- a/internal/ui/table.go +++ b/internal/ui/table.go @@ -226,11 +226,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 } |
