formatWarning formats a warning message in yellow.
(msg string, r *lipgloss.Renderer)
| 172 | |
| 173 | // formatWarning formats a warning message in yellow. |
| 174 | func formatWarning(msg string, r *lipgloss.Renderer) string { |
| 175 | return r.NewStyle().Foreground(lipgloss.Color("3")).Render(msg) |
| 176 | } |
| 177 | |
| 178 | // formatLabel formats a label in bold. |
| 179 | func formatLabel(label string, r *lipgloss.Renderer) string { |
no outgoing calls