2022-09-24 21:12:04 +01:00
|
|
|
/* Terminal colors (16 first used in escape sequence) */
|
|
|
|
static const char *colorname[] = {
|
|
|
|
/* 8 normal colors */
|
|
|
|
"#45475A",
|
|
|
|
"#F38BA8",
|
|
|
|
"#A6E3A1",
|
|
|
|
"#F9E2AF",
|
|
|
|
"#89B4FA",
|
|
|
|
"#F5C2E7",
|
|
|
|
"#94E2D5",
|
|
|
|
"#BAC2DE",
|
|
|
|
|
|
|
|
/* 8 bright colors */
|
|
|
|
"#585B70",
|
|
|
|
"#F38BA8",
|
|
|
|
"#A6E3A1",
|
|
|
|
"#F9E2AF",
|
|
|
|
"#89B4FA",
|
|
|
|
"#F5C2E7",
|
|
|
|
"#94E2D5",
|
|
|
|
"#A6ADC8",
|
|
|
|
|
|
|
|
[256] = "#CDD6F4", /* default foreground colour */
|
|
|
|
[257] = "#1E1E2E", /* default background colour */
|
2022-09-24 22:28:54 +01:00
|
|
|
[258] = "#F5E0DC", /* 575268 */
|
2022-09-24 21:12:04 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* foreground, background, cursor, reverse cursor
|
|
|
|
*/
|
|
|
|
unsigned int defaultfg = 256;
|
|
|
|
unsigned int defaultbg = 257;
|
|
|
|
unsigned int defaultcs = 258;
|
|
|
|
unsigned int defaultrcs = 258;
|