Skip to content

Commit

Permalink
Merge pull request #183 from dmarcelino/182-color_bold
Browse files Browse the repository at this point in the history
Issue #182: replace high intensity foreground color for bold
  • Loading branch information
TooTallNate committed Mar 13, 2015
2 parents 5b613b3 + 92eaeed commit 1157441
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 1157441

Please sign in to comment.