Skip to content

Commit

Permalink
Merge pull request #355 from okcoker/ansi-color-fix
Browse files Browse the repository at this point in the history
Fix ansi colors
  • Loading branch information
glenjamin committed Apr 25, 2019
2 parents f6609e4 + 331ad96 commit fe33d59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client-overlay.js
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 fe33d59

Please sign in to comment.