feat(theme): change colorscheme

This commit is contained in:
2025-01-11 18:11:01 +04:00
parent f4100cdc22
commit e82186f9b5
7 changed files with 3405 additions and 50 deletions

View File

@@ -99,37 +99,31 @@ unsigned int tabspaces = 8;
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
"#323437",
"#ff5454",
"#8cc85f",
"#e3c78a",
"#80a0ff",
"#d183e8",
"#79dac8",
"#a1aab8",
"#7c8f8f",
"#ff5189",
"#36c692",
"#bfbf97",
"#74b2ff",
"#ae81ff",
"#85dc85",
"#e2637f",
[0] = "#282828", /* hard contrast: #1d2021 / soft contrast: #32302f */
[1] = "#cc241d", /* red */
[2] = "#98971a", /* green */
[3] = "#d79921", /* yellow */
[4] = "#458588", /* blue */
[5] = "#b16286", /* magenta */
[6] = "#689d6a", /* cyan */
[7] = "#a89984", /* white */
[8] = "#928374", /* black */
[9] = "#fb4934", /* red */
[10] = "#b8bb26", /* green */
[11] = "#fabd2f", /* yellow */
[12] = "#83a598", /* blue */
[13] = "#d3869b", /* magenta */
[14] = "#8ec07c", /* cyan */
[15] = "#ebdbb2", /* white */
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
"#272727",
"#f8f8f2",
"#080808",
"#eeeeee",
};
/*
* Default colors (colorname index)
* foreground, background, cursor, reverse cursor
*/
unsigned int defaultfg = 259;
unsigned int defaultbg = 256;
unsigned int defaultcs = 257;
unsigned int defaultfg = 15;
unsigned int defaultbg = 0;
unsigned int defaultcs = 15;
static unsigned int defaultrcs = 257;
/* https://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h4-Functions-using-CSI-_-ordered-by-the-final-character-lparen-s-rparen:CSI-Ps-SP-q.1D81