formatTaskID formats task IDs with a distinct color.
(id string, r *lipgloss.Renderer)
| 108 | |
| 109 | // formatTaskID formats task IDs with a distinct color. |
| 110 | func formatTaskID(id string, r *lipgloss.Renderer) string { |
| 111 | style := r.NewStyle().Foreground(lipgloss.Color("6")).Bold(true) // Cyan, bold |
| 112 | return style.Render(id) |
| 113 | } |
| 114 | |
| 115 | // formatTaskTitle formats task titles with status-based coloring. |
| 116 | func formatTaskTitle(title, status string, r *lipgloss.Renderer) string { |
no outgoing calls