Skip to content

Commit 45fac2a

Browse files
committed
Revert "Change command and advisory color."
This reverts commit 9db9f0f.
1 parent f56b94d commit 45fac2a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/cf/terminal/color.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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

2323
func colorize(message string, color Color, bold bool) string {
@@ -46,15 +46,15 @@ func HeaderColor(message string) string {
4646
}
4747

4848
func CommandColor(message string) string {
49-
return colorize(message, cyan, true)
49+
return colorize(message, yellow, true)
5050
}
5151

5252
func StoppedColor(message string) string {
5353
return colorize(message, grey, true)
5454
}
5555

5656
func AdvisoryColor(message string) string {
57-
return colorize(message, cyan, true)
57+
return colorize(message, yellow, true)
5858
}
5959

6060
func CrashedColor(message string) string {

0 commit comments

Comments
 (0)