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