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) */
static const char *colorname[] = {
/* 8 normal colors */
"#010101",
"#d23f38",
"#37d24c",
"#ccd436",
"#356bd5",
"#c935d4",
"#35d4c6",
"#7a7a7a",
"#010101", // Black
"#aa0000", // Red
"#55ff55", // Green
"#ffff55", // Yellow
"#5555ff", // Blue
"#aa00aa", // Magenta
"#55ffff", // Cyan
"#7a7a7a", // Gray
/* 8 bright colors */
"#010101",
"#d23f38",
"#37d24c",
"#ccd436",
"#356bd5",
"#c935d4",
"#35d4c6",
"#7a7a7a",
"#010101", // Black
"#aa0000", // Red
"#55ff55", // Green
"#ffff55", // Yellow
"#5555ff", // Blue
"#aa00aa", // Magenta
"#55ffff", // Cyan
"#7a7a7a", // Gray
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
"#cccccc",
"#555555",
"#c935d4", /* default foreground colour */
"#aa00aa", /* default foreground colour */
"#010101", /* default background colour */
};