From 74f39041d4659809bab82dc78aed2ad38ab95811 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 10 Nov 2011 23:35:35 -0800 Subject: [PATCH] dont use blue for numbers in util.inspect --- lib/util.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/util.js b/lib/util.js index 7fd432a4af8..639c04f9e7a 100644 --- a/lib/util.js +++ b/lib/util.js @@ -122,9 +122,10 @@ var colors = { 'yellow' : [33, 39] }; +// Don't use 'blue' not visible on cmd.exe var styles = { 'special': 'cyan', - 'number': 'blue', + 'number': 'yellow', 'boolean': 'yellow', 'undefined': 'grey', 'null': 'bold',