From 92eaeede1af418dad7604febde25be73108e6c26 Mon Sep 17 00:00:00 2001 From: Dario Marcelino Date: Mon, 2 Mar 2015 13:03:33 +0000 Subject: [PATCH] Issue #182: replace high intensity foreground color for bold --- node.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node.js b/node.js index 5dc999fe..1d392a81 100644 --- a/node.js +++ b/node.js @@ -87,7 +87,7 @@ function formatArgs() { if (useColors) { var c = this.color; - args[0] = ' \u001b[9' + c + 'm' + name + ' ' + args[0] = ' \u001b[3' + c + ';1m' + name + ' ' + '\u001b[0m' + args[0] + '\u001b[3' + c + 'm' + ' +' + exports.humanize(this.diff) + '\u001b[0m';