Skip to content

Commit

Permalink
Revert "Change command and advisory color."
Browse files Browse the repository at this point in the history
This reverts commit 9db9f0f.
  • Loading branch information
tjarratt committed Jan 31, 2014
1 parent f56b94d commit 45fac2a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/cf/terminal/color.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ const (
red Color = 31
green = 32
yellow = 33
blue = 34
magenta = 35
cyan = 36
grey = 37
white = 38
// blue = 34
magenta = 35
cyan = 36
grey = 37
white = 38
)

func colorize(message string, color Color, bold bool) string {
Expand Down Expand Up @@ -46,15 +46,15 @@ func HeaderColor(message string) string {
}

func CommandColor(message string) string {
return colorize(message, cyan, true)
return colorize(message, yellow, true)
}

func StoppedColor(message string) string {
return colorize(message, grey, true)
}

func AdvisoryColor(message string) string {
return colorize(message, cyan, true)
return colorize(message, yellow, true)
}

func CrashedColor(message string) string {
Expand Down

0 comments on commit 45fac2a

Please sign in to comment.