This commit is contained in:
serxoz 2022-09-02 11:46:59 +02:00
parent d6836443df
commit 293a369717

View File

@ -96,24 +96,24 @@ unsigned int tabspaces = 8;
/* Terminal colors (16 first used in escape sequence) */ /* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = { static const char *colorname[] = {
/* 8 normal colors */ /* 8 normal colors */
"black", [0] = "#1d1f21", /* black */
"red3", [1] = "#cc6666", /* red */
"green3", [2] = "#b5bd68", /* green */
"yellow3", [3] = "#f0c674", /* yellow */
"blue2", [4] = "#81a2be", /* blue */
"magenta3", [5] = "#b294bb", /* magenta */
"cyan3", [6] = "#8abeb7", /* cyan */
"gray90", [7] = "#c5c8c6", /* white */
/* 8 bright colors */ /* 8 bright colors */
"gray50", [8] = "#666666", /* black */
"red", [9] = "#d54e53", /* red */
"green", [10] = "#b9ca4a", /* green */
"yellow", [11] = "#e7c547", /* yellow */
"#5c5cff", [12] = "#7aa6da", /* blue */
"magenta", [13] = "#c397d8", /* magenta */
"cyan", [14] = "#70c0b1", /* cyan */
"white", [15] = "#eaeaea", /* white */
[255] = 0, [255] = 0,