diff --git a/lib/util.js b/lib/util.js index c943ea08358..aa8e1324317 100644 --- a/lib/util.js +++ b/lib/util.js @@ -59,15 +59,15 @@ exports.inspect = function(obj, showHidden, depth, colors) { 'yellow' : [33, 39] }; var style = - { 'special': 'grey', + { 'special': 'cyan', 'number': 'blue', - 'boolean': 'blue', - 'undefined': 'red', - 'null': 'red', + 'boolean': 'yellow', + 'undefined': 'grey', + 'null': 'bold', 'string': 'green', 'date': 'magenta', // "name": intentionally not styling - 'regexp': 'cyan' }[styleType]; + 'regexp': 'red' }[styleType]; if (style) { return '\033[' + styles[style][0] + 'm' + str +