color scheme

This commit is contained in:
Michael Peters 2022-10-13 11:58:08 -07:00
parent b9ee47dcfc
commit cdea479bef

View File

@ -109,32 +109,31 @@ float alpha = 0.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] = "#1e1f22", /* black */
"red3", [1] = "#e84f4f", /* red */
"green3", [2] = "#1bcf39", /* green */
"yellow3", [3] = "#d7d025", /* yellow */
"blue2", [4] = "#4168ef", /* blue */
"magenta3", [5] = "#da5f8e", /* magenta */
"cyan3", [6] = "#7adce7", /* cyan */
"gray90", [7] = "#cccccc", /* white */
/* 8 bright colors */ /* 8 bright colors */
"gray50", [8] = "#666666", /* black */
"red", [9] = "#d23d3d", /* red */
"green", [10] = "#5be569", /* green */
"yellow", [11] = "#efa21f", /* yellow */
"#5c5cff", [12] = "#3795f4", /* blue */
"magenta", [13] = "#ef91b6", /* magenta */
"cyan", [14] = "#b7ebf1", /* cyan */
"white", [15] = "#ffffff", /* white */
[255] = 0, [255] = 0,
/* more colors can be added after 255 to use with DefaultXX */ /* more colors can be added after 255 to use with DefaultXX */
"#cccccc", "#add8e6", /* 256 -> cursor */
"#555555", "#555555", /* 257 -> rev cursor*/
"gray90", /* default foreground colour */ "#ffffff", /* 258 -> fg */
"black", /* default background colour */ "#000000", /* 259 -> bg */
}; };