Update colors

This commit is contained in:
cannoli-fruit 2026-07-14 02:06:36 -04:00
commit 2585166344

View file

@ -96,31 +96,31 @@ 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", "#010101", // Black
"#d23f38", "#aa0000", // Red
"#37d24c", "#55ff55", // Green
"#ccd436", "#ffff55", // Yellow
"#356bd5", "#5555ff", // Blue
"#c935d4", "#aa00aa", // Magenta
"#35d4c6", "#55ffff", // Cyan
"#7a7a7a", "#7a7a7a", // Gray
/* 8 bright colors */ /* 8 bright colors */
"#010101", "#010101", // Black
"#d23f38", "#aa0000", // Red
"#37d24c", "#55ff55", // Green
"#ccd436", "#ffff55", // Yellow
"#356bd5", "#5555ff", // Blue
"#c935d4", "#aa00aa", // Magenta
"#35d4c6", "#55ffff", // Cyan
"#7a7a7a", "#7a7a7a", // 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", "#cccccc",
"#555555", "#555555",
"#c935d4", /* default foreground colour */ "#aa00aa", /* default foreground colour */
"#010101", /* default background colour */ "#010101", /* default background colour */
}; };