(t string)
| 161 | } |
| 162 | |
| 163 | func (c *ColorScheme) Cyan(t string) string { |
| 164 | if !c.Enabled { |
| 165 | return t |
| 166 | } |
| 167 | return cyan(t) |
| 168 | } |
| 169 | |
| 170 | func (c *ColorScheme) Cyanf(t string, args ...any) string { |
| 171 | return c.Cyan(fmt.Sprintf(t, args...)) |
no outgoing calls
no test coverage detected