Added moonfly color scheme

This commit is contained in:
cannoli-fruit 2026-07-22 04:34:07 -04:00
commit 8bb51d4bf2

View file

@ -103,31 +103,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 */ [0] = "#323437",
"#080808", // Black [1] = "#ff5454",
"#A53C23", // Red [2] = "#8cc85f",
"#7B9246", // Green [3] = "#e3c78a",
"#D3A04D", // Yellow [4] = "#80a0ff",
"#6C99BB", // Blue [5] = "#d183e8",
"#9F4E85", // Magenta [6] = "#79dac8",
"#7DD6CF", // Cyan [7] = "#a1aab8",
"#989898", // Gray
/* 8 bright colors */
"#080808", // Black [8] = "#7c8f8f",
"#A53C23", // Red [9] = "#ff5189",
"#7B9246", // Green [10] = "#36c692",
"#D3A04D", // Yellow [11] = "#bfbf97",
"#6C99BB", // Blue [12] = "#74b2ff",
"#9F4E85", // Magenta [13] = "#ae81ff",
"#7DD6CF", // Cyan [14] = "#85dc85",
"#989898", // Gray [15] = "#e2637f",
[255] = 0, [255] = 0,
[256] = "#282a36",
/* more colors can be added after 255 to use with DefaultXX */ [257] = "#f8f8f2",
"#989898", /* default foreground colour */ [258] = "#080808",
"#080808", /* default background colour */ [259]= "#eeeeee",
}; };
@ -135,10 +134,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 = 256; unsigned int defaultfg = 259;
unsigned int defaultbg = 257; unsigned int defaultbg = 258;
unsigned int defaultcs = 254; unsigned int defaultcs = 256;
static unsigned int defaultrcs = 255; static unsigned int defaultrcs = 257;
/* /*
* Default shape of cursor * Default shape of cursor