From e605d10093ae8e444c5be2d722bac28eba06afa1 Mon Sep 17 00:00:00 2001 From: Sean Coker <1030830+okcoker@users.noreply.github.com> Date: Thu, 25 Apr 2019 02:59:10 -0400 Subject: [PATCH] Fix ansi colors --- client-overlay.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client-overlay.js b/client-overlay.js index 5f5ecfb..a1d7af1 100644 --- a/client-overlay.js +++ b/client-overlay.js @@ -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); }