Changes the color scheme of the outputs from One Dark to One Light (#864)

This commit is contained in:
Cristine Guadelupe 2022-01-13 17:10:51 -03:00 committed by GitHub
parent d6760446b4
commit 6b63ed9c33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,25 +1,25 @@
/* /*
Variables for HTML-ized ANSI string. Variables for HTML-ized ANSI string.
Many colors are taken from the One Dark theme Many colors are taken from the One Light theme
to be consistent with the editor. to be consistent with the editor.
*/ */
:root { :root {
--ansi-color-black: black; --ansi-color-black: black;
--ansi-color-red: #e06c75; --ansi-color-red: #ca1243;
--ansi-color-green: #98c379; --ansi-color-green: #50a14f;
--ansi-color-yellow: #e5c07b; --ansi-color-yellow: #c18401;
--ansi-color-blue: #61afef; --ansi-color-blue: #4078f2;
--ansi-color-magenta: #c678dd; --ansi-color-magenta: #a726a4;
--ansi-color-cyan: #56b6c2; --ansi-color-cyan: #0184bc;
--ansi-color-white: white; --ansi-color-white: white;
--ansi-color-light-black: #5c6370; --ansi-color-light-black: #5c6370;
--ansi-color-light-red: #f87171; --ansi-color-light-red: #e45649;
--ansi-color-light-green: #34d399; --ansi-color-light-green: #34d399;
--ansi-color-light-yellow: #fde68a; --ansi-color-light-yellow: #fde68a;
--ansi-color-light-blue: #93c5fd; --ansi-color-light-blue: #61afef;
--ansi-color-light-magenta: #f472b6; --ansi-color-light-magenta: #c678dd;
--ansi-color-light-cyan: #6be3f2; --ansi-color-light-cyan: #56b6c2;
--ansi-color-light-white: white; --ansi-color-light-white: white;
} }