Skip to content

Commit

Permalink
fix: improve red color
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalin Krustev committed Nov 12, 2020
1 parent 5adf31a commit 3531c57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions colorStream.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const colors = {
green: [32, 39],
magenta: [35, 39],
brightMagenta: [95, 39],
red: [31, 39],
red: [91, 39],
brightYellow: ['93;1', '39;22'],
brightCyan: [96, 39],
brightGreen: [92, 39],
Expand Down Expand Up @@ -438,7 +438,7 @@ function PrettyStream(opts) {

const error = extractError(rec);
if (error) {
details.push(stylize(error.join('\n \x1B[31m'), 'red'));
details.push(stylize(error.join('\n \x1B[91m'), 'red'));
}

if (rec.req) {
Expand Down

0 comments on commit 3531c57

Please sign in to comment.