BrightYellow returns text colored bright yellow.
(text string)
| 93 | |
| 94 | // BrightYellow returns text colored bright yellow. |
| 95 | func BrightYellow(text string) string { |
| 96 | return color.Sprintf(color.BrightYellow(text)) |
| 97 | } |
| 98 | |
| 99 | // Blue returns text colored blue. |
| 100 | func Blue(text string) string { |