set wilmersdorf colours

This commit is contained in:
Amolith 2021-02-09 01:51:34 -05:00
parent f48b201cf0
commit c81e4e29c1
Signed by: Amolith
GPG Key ID: 5548AD9930655715
1 changed files with 24 additions and 22 deletions

View File

@ -105,33 +105,35 @@ char *termname = "st-256color";
*/
unsigned int tabspaces = 8;
/* Terminal colors (16 first used in escape sequence) */
/*
* Terminal colors (16 first used in escape sequence)
* Base16 st template by Daniel Mulford
* oomox-wilmersdorf scheme by oomox-wilmersdorf
*/
static const char *colorname[] = {
/* 8 normal colors */
"black",
"red3",
"green3",
"yellow3",
"blue2",
"magenta3",
"cyan3",
"gray90",
/* 8 normal colors */
[0] = "#282b33", /* black */
[1] = "#e1c1ee", /* red */
[2] = "#5b94ab", /* green */
[3] = "#cfcf9c", /* yellow */
[4] = "#90a6db", /* blue */
[5] = "#b0a2e7", /* magenta */
[6] = "#7289bc", /* cyan */
[7] = "#bcbabe", /* white */
/* 8 bright colors */
"gray50",
"red",
"green",
"yellow",
"#5c5cff",
"magenta",
"cyan",
"white",
[8] = "#727278", /* black */
[9] = "#e1c1ee", /* red */
[10] = "#5b94ab", /* green */
[11] = "#cfcf9c", /* yellow */
[12] = "#90a6db", /* blue */
[13] = "#b0a2e7", /* magenta */
[14] = "#7289bc", /* cyan */
[15] = "#c6c6c6", /* white */
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
"#cccccc",
"#555555",
};
@ -141,8 +143,8 @@ static const char *colorname[] = {
*/
unsigned int defaultfg = 7;
unsigned int defaultbg = 0;
static unsigned int defaultcs = 256;
static unsigned int defaultrcs = 257;
static unsigned int defaultcs = 7;
static unsigned int defaultrcs = 0;
/*
* 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