(t string)
| 179 | } |
| 180 | |
| 181 | func (c *ColorScheme) Blue(t string) string { |
| 182 | if !c.Enabled { |
| 183 | return t |
| 184 | } |
| 185 | return blue(t) |
| 186 | } |
| 187 | |
| 188 | func (c *ColorScheme) Bluef(t string, args ...interface{}) string { |
| 189 | return c.Blue(fmt.Sprintf(t, args...)) |
no outgoing calls
no test coverage detected