From 226393e28824a414fdcf73385536a6f3aa6469ee Mon Sep 17 00:00:00 2001 From: Ricardo Pardini Date: Tue, 6 Jun 2023 19:40:30 +0200 Subject: [PATCH] rework colors, eg: yellow is not orange --- static/ansi-to-html.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/static/ansi-to-html.js b/static/ansi-to-html.js index 17dafe7..8f98ff3 100644 --- a/static/ansi-to-html.js +++ b/static/ansi-to-html.js @@ -10,17 +10,17 @@ const defaults = { function getDefaultColors() { const colors = { 0: '#999', // no, NOT BLACK - 1: '#A00', - 2: '#0A0', - 3: '#A50', + 1: '#ff5252', + 2: '#5F5', + 3: '#ffeb00', 4: '#4242da', - 5: '#A0A', - 6: '#0AA', + 5: '#ff84ff', + 6: '#92ffff', 7: '#AAA', 8: '#777', 9: '#F55', - 10: '#5F5', - 11: '#FF5', + 10: '#3bfd3b', + 11: '#ffff0b', 12: '#55F', 13: '#F5F', 14: '#5FF',