Skip to content

Commit

Permalink
Fix ansi colors
Browse files Browse the repository at this point in the history
  • Loading branch information
okcoker committed Apr 25, 2019
1 parent 036bf30 commit e605d10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client-overlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ function problemType(type) {
}

module.exports = function(options) {
for (var color in options.overlayColors) {
for (var color in options.ansiColors) {
if (color in colors) {
colors[color] = options.overlayColors[color];
colors[color] = options.ansiColors[color];
}
ansiHTML.setColors(colors);
}
Expand Down

0 comments on commit e605d10

Please sign in to comment.