Change the colors again lol

This commit is contained in:
cannoli-fruit 2026-07-19 02:37:29 -04:00
commit a83d5aad71

View file

@ -104,32 +104,30 @@ unsigned int tabspaces = 4;
/* 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 */
"#010101", // Black "#080808", // Black
"#aa0000", // Red "#A53C23", // Red
"#55ff55", // Green "#7B9246", // Green
"#ffff55", // Yellow "#D3A04D", // Yellow
"#5555ff", // Blue "#6C99BB", // Blue
"#aa00aa", // Magenta "#9F4E85", // Magenta
"#55ffff", // Cyan "#7DD6CF", // Cyan
"#7a7a7a", // Gray "#D0D0D0", // Gray
/* 8 bright colors */ /* 8 bright colors */
"#010101", // Black "#080808", // Black
"#aa0000", // Red "#A53C23", // Red
"#55ff55", // Green "#7B9246", // Green
"#ffff55", // Yellow "#D3A04D", // Yellow
"#5555ff", // Blue "#6C99BB", // Blue
"#aa00aa", // Magenta "#9F4E85", // Magenta
"#55ffff", // Cyan "#7DD6CF", // Cyan
"#7a7a7a", // Gray "#D0D0D0", // Gray
[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", "#D0D0D0", /* default foreground colour */
"#555555", "#080808", /* default background colour */
"#aa00aa", /* default foreground colour */
"#010101", /* default background colour */
}; };
@ -137,10 +135,10 @@ static const char *colorname[] = {
* Default colors (colorname index) * Default colors (colorname index)
* foreground, background, cursor, reverse cursor * foreground, background, cursor, reverse cursor
*/ */
unsigned int defaultfg = 258; unsigned int defaultfg = 256;
unsigned int defaultbg = 259; unsigned int defaultbg = 257;
unsigned int defaultcs = 256; unsigned int defaultcs = 254;
static unsigned int defaultrcs = 257; static unsigned int defaultrcs = 255;
/* /*
* Default shape of cursor * Default shape of cursor