change default colors

This commit is contained in:
ant 2025-01-12 16:07:50 +01:00
parent 816061be47
commit 0b4c1084f0

View file

@ -173,34 +173,29 @@ float alphaUnfocused = 0.6;
#endif // ALPHA_PATCH #endif // ALPHA_PATCH
/* Terminal colors (16 first used in escape sequence) */ /* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = { static char *colorname[] = {
/* 8 normal colors */ "#011627", /* hard contrast: #1d2021 / soft contrast: #32302f */
"black", "#d3423e",
"red3", "#2aa298",
"green3", "#daaa01",
"yellow3", "#4876d6",
"blue2", "#403f53",
"magenta3", "#08916a",
"cyan3", "#7a8181",
"gray90", "#7a8181",
"#f76e6e",
/* 8 bright colors */ "#49d0c5",
"gray50", "#dac26b",
"red", "#5ca7e4",
"green", "#697098",
"yellow", "#00c990",
"#5c5cff", "#989fb1",
"magenta",
"cyan",
"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 */
"#add8e6", /* 256 -> cursor */ "#403f53", /* 256 -> cursor */
"#555555", /* 257 -> rev cursor*/ "#f2f2f2", /* 257 -> rev cursor*/
"#000000", /* 258 -> bg */ "#ffffff", /* 258 -> bg */
"#e5e5e5", /* 259 -> fg */ "#403f53", /* 259 -> fg */
}; };
#if DARKMAN_PATCH #if DARKMAN_PATCH