Skip to content

Commit

Permalink
Merge pull request #4885 from leighman/master
Browse files Browse the repository at this point in the history
Fix: gray text was invisible on Solarized Dark theme (fixes #4886)
  • Loading branch information
nzakas committed Jan 8, 2016
2 parents 65ad608 + a1840e7 commit 1972678
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/formatters/stylish.js
Expand Up @@ -62,7 +62,7 @@ module.exports = function(results) {
message.column || 0,
messageType,
message.message.replace(/\.$/, ""),
chalk.gray(message.ruleId || "")
chalk.dim(message.ruleId || "")
];
}),
{
Expand All @@ -73,7 +73,7 @@ module.exports = function(results) {
}
).split("\n").map(function(el) {
return el.replace(/(\d+)\s+(\d+)/, function(m, p1, p2) {
return chalk.gray(p1 + ":" + p2);
return chalk.dim(p1 + ":" + p2);
});
}).join("\n") + "\n\n";
});
Expand Down

0 comments on commit 1972678

Please sign in to comment.