formatPriority formats priority text with priority-based color.
(priority string, r *lipgloss.Renderer)
| 144 | |
| 145 | // formatPriority formats priority text with priority-based color. |
| 146 | func formatPriority(priority string, r *lipgloss.Renderer) string { |
| 147 | style := getPriorityColor(priority, r) |
| 148 | return style.Render(priority) |
| 149 | } |
| 150 | |
| 151 | // formatEffort formats effort text with effort-based color. |
| 152 | func formatEffort(effort string, r *lipgloss.Renderer) string { |