File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ const (
1313 red Color = 31
1414 green = 32
1515 yellow = 33
16- blue = 34
17- magenta = 35
18- cyan = 36
19- grey = 37
20- white = 38
16+ // blue = 34
17+ magenta = 35
18+ cyan = 36
19+ grey = 37
20+ white = 38
2121)
2222
2323func colorize (message string , color Color , bold bool ) string {
@@ -46,15 +46,15 @@ func HeaderColor(message string) string {
4646}
4747
4848func CommandColor (message string ) string {
49- return colorize (message , cyan , true )
49+ return colorize (message , yellow , true )
5050}
5151
5252func StoppedColor (message string ) string {
5353 return colorize (message , grey , true )
5454}
5555
5656func AdvisoryColor (message string ) string {
57- return colorize (message , cyan , true )
57+ return colorize (message , yellow , true )
5858}
5959
6060func CrashedColor (message string ) string {
You can’t perform that action at this time.
0 commit comments