formatStatus formats status text with status-based color.
(status string, r *lipgloss.Renderer)
| 138 | |
| 139 | // formatStatus formats status text with status-based color. |
| 140 | func formatStatus(status string, r *lipgloss.Renderer) string { |
| 141 | style := getStatusColor(status, r) |
| 142 | return style.Render(status) |
| 143 | } |
| 144 | |
| 145 | // formatPriority formats priority text with priority-based color. |
| 146 | func formatPriority(priority string, r *lipgloss.Renderer) string { |