Skip to content

Commit 1157441

Browse files
committed
Merge pull request #183 from dmarcelino/182-color_bold
Issue #182: replace high intensity foreground color for bold
2 parents 5b613b3 + 92eaeed commit 1157441

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

node.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function formatArgs() {
8787
if (useColors) {
8888
var c = this.color;
8989

90-
args[0] = ' \u001b[9' + c + 'm' + name + ' '
90+
args[0] = ' \u001b[3' + c + ';1m' + name + ' '
9191
+ '\u001b[0m'
9292
+ args[0] + '\u001b[3' + c + 'm'
9393
+ ' +' + exports.humanize(this.diff) + '\u001b[0m';

0 commit comments

Comments
 (0)