Apply colorscheme

This commit is contained in:
Shourai 2020-07-18 12:48:48 +02:00
parent ff4fd8469b
commit 01802617da

View File

@ -106,25 +106,25 @@ float alpha = 0.70;
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
"black",
"red3",
"green3",
"yellow3",
"blue2",
"magenta3",
"cyan3",
"gray90",
/* 8 normal colors */
[0] = "#1d2021", /* black */
[1] = "#dc322f", /* red */
[2] = "#859900", /* green */
[3] = "#b58900", /* yellow */
[4] = "#268bd2", /* blue */
[5] = "#d33682", /* magenta */
[6] = "#2aa198", /* cyan */
[7] = "#eee8d5", /* white */
/* 8 bright colors */
"gray50",
"red",
"green",
"yellow",
"#5c5cff",
"magenta",
"cyan",
"white",
/* 8 bright colors */
[8] = "#928374", /* black */
[9] = "#cb4b16", /* red */
[10] = "#586e75", /* green */
[11] = "#657b83", /* yellow */
[12] = "#839496", /* blue */
[13] = "#6c71c4", /* magenta */
[14] = "#93a1a1", /* cyan */
[15] = "#fdf6e3", /* white */
[255] = 0,