formatLabel formats a label in bold.
(label string, r *lipgloss.Renderer)
| 177 | |
| 178 | // formatLabel formats a label in bold. |
| 179 | func formatLabel(label string, r *lipgloss.Renderer) string { |
| 180 | return r.NewStyle().Bold(true).Render(label) |
| 181 | } |
| 182 | |
| 183 | // formatDim formats text in gray (dimmed). |
| 184 | func formatDim(text string, r *lipgloss.Renderer) string { |
no outgoing calls