Red returns text colored red.
(text string)
| 73 | |
| 74 | // Red returns text colored red. |
| 75 | func Red(text string) string { |
| 76 | return color.Sprintf(color.Red(text)) |
| 77 | } |
| 78 | |
| 79 | // BrightRed returns text colored bright red. |
| 80 | func BrightRed(text string) string { |
no outgoing calls
no test coverage detected