diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-11-10 23:35:35 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-11-10 23:35:35 -0800 |
commit | 74f39041d4659809bab82dc78aed2ad38ab95811 (patch) | |
tree | 9da192f30e318d74a6523ae3e3a721836a09a50c /lib | |
parent | dc39ab3bbf22f624b7dccc66766aeda23c854579 (diff) | |
download | node-new-74f39041d4659809bab82dc78aed2ad38ab95811.tar.gz |
dont use blue for numbers in util.inspect
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/util.js b/lib/util.js index 7fd432a4af..639c04f9e7 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', |