From 45fac2a4fb4349311d5c9206e9614119e76efc86 Mon Sep 17 00:00:00 2001 From: Tim Jarratt and Zach Robinson Date: Fri, 31 Jan 2014 15:59:46 -0800 Subject: [PATCH] Revert "Change command and advisory color." This reverts commit 9db9f0fab298e2a1c597933ed78fc42f8bfc2920. --- src/cf/terminal/color.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/cf/terminal/color.go b/src/cf/terminal/color.go index d2c14ae65d2..677af016689 100644 --- a/src/cf/terminal/color.go +++ b/src/cf/terminal/color.go @@ -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 { @@ -46,7 +46,7 @@ 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 { @@ -54,7 +54,7 @@ func StoppedColor(message string) string { } func AdvisoryColor(message string) string { - return colorize(message, cyan, true) + return colorize(message, yellow, true) } func CrashedColor(message string) string {