(t string, args ...interface{})
| 65 | } |
| 66 | |
| 67 | func (c *ColorScheme) Boldf(t string, args ...interface{}) string { |
| 68 | return c.Bold(fmt.Sprintf(t, args...)) |
| 69 | } |
| 70 | |
| 71 | func (c *ColorScheme) Muted(t string) string { |
| 72 | // Fallback to previous logic if accessible colors preview is disabled. |
no test coverage detected