UI color settings.
| 30 | |
| 31 | // UI color settings. |
| 32 | type Theme struct { |
| 33 | Chroma string `json:"Chroma"` |
| 34 | Colors map[string]lipgloss.Color `json:"Colors"` |
| 35 | Emojis map[string]string `json:"Emojis"` |
| 36 | } |
| 37 | |
| 38 | func (c *Config) HasWarnings() bool { |
| 39 | return len(c.Warnings) > 0 |
nothing calls this directly
no outgoing calls
no test coverage detected