formatTaskTitle formats task titles with status-based coloring.
(title, status string, r *lipgloss.Renderer)
| 114 | |
| 115 | // formatTaskTitle formats task titles with status-based coloring. |
| 116 | func formatTaskTitle(title, status string, r *lipgloss.Renderer) string { |
| 117 | style := getStatusColor(status, r) |
| 118 | return style.Render(title) |
| 119 | } |
| 120 | |
| 121 | // formatHeading colors a heading based on the group-by field and key value. |
| 122 | func formatHeading(key, groupBy string, r *lipgloss.Renderer) string { |
no test coverage detected