Skip to content

Commit

Permalink
Issue #182: replace high intensity foreground color for bold
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarcelino committed Mar 2, 2015
1 parent ef0b378 commit 92eaeed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 92eaeed

Please sign in to comment.