change default colors for light

This commit is contained in:
Antoine Vaure 2025-10-03 13:19:00 +02:00
parent 02627756f1
commit 0eeee01496

View file

@ -162,7 +162,7 @@ unsigned int tabspaces = 8;
#if ALPHA_PATCH #if ALPHA_PATCH
/* bg opacity */ /* bg opacity */
float alpha = 0.8; float alpha = 0.9;
#if ALPHA_GRADIENT_PATCH #if ALPHA_GRADIENT_PATCH
float grad_alpha = 0.54; //alpha value that'll change float grad_alpha = 0.54; //alpha value that'll change
float stat_alpha = 0.46; //constant alpha value that'll get added to grad_alpha float stat_alpha = 0.46; //constant alpha value that'll get added to grad_alpha
@ -183,28 +183,28 @@ char *xdndescchar = " !\"#$&'()*;<>?[\\]^`{|}~";
/* Terminal colors (16 first used in escape sequence) */ /* Terminal colors (16 first used in escape sequence) */
static char *colorname[] = { static char *colorname[] = {
"#011627", /* hard contrast: #1d2021 / soft contrast: #32302f */ "#000000",
"#d3423e", "#ff3333",
"#2aa298", "#86b200",
"#daaa01", "#f19618",
"#4876d6", "#41a6d9",
"#403f53", "#f07078",
"#08916a", "#4cbe99",
"#7a8181", "#ffffff",
"#7a8181", "#323232",
"#f76e6e", "#ff6565",
"#49d0c5", "#b8e532",
"#dac26b", "#ffc849",
"#5ca7e4", "#73d7ff",
"#697098", "#ffa3aa",
"#00c990", "#7ff0cb",
"#989fb1", "#ffffff",
[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 */
"#403f53", /* 256 -> cursor */ "#ff6900", /* 256 -> cursor */
"#f2f2f2", /* 257 -> rev cursor*/ "#f0ede4", /* 257 -> rev cursor*/
"#ffffff", /* 258 -> bg */ "#fafafa", /* 258 -> bg */
"#403f53", /* 259 -> fg */ "#5b6673", /* 259 -> fg */
}; };
#if DARKMAN_PATCH #if DARKMAN_PATCH