change colors
Build/Publish XBPS / build-and-publish (push) Failing after 7s
Details
Build/Publish XBPS / build-and-publish (push) Failing after 7s
Details
This commit is contained in:
parent
b1119f262d
commit
71fd850d8c
24
config.h
24
config.h
|
@ -153,31 +153,27 @@ static const char *colorname[] = {
|
||||||
[255] = 0,
|
[255] = 0,
|
||||||
|
|
||||||
/* more colors can be added after 255 to use with DefaultXX */
|
/* more colors can be added after 255 to use with DefaultXX */
|
||||||
"#c0caf5", /* 256 -> default cursor colour */
|
"#1a1b26", /* 256 -> darker black */
|
||||||
"#1a1b26", /* 257 -> default inverted cursor colour */
|
"#283457", /* 257 -> selection background colour */
|
||||||
"#c0caf5", /* 258 -> default foreground colour */
|
|
||||||
"#1a1b26", /* 259 -> default background colour */
|
|
||||||
"#c0caf5", /* 260 -> default selection foreground colour */
|
|
||||||
"#33467C", /* 261 -> default selection background colour */
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Default colors (colorname index)
|
* Default colors (colorname index)
|
||||||
* foreground, background, cursor, reverse cursor
|
* foreground, background, cursor, reverse cursor
|
||||||
*/
|
*/
|
||||||
unsigned int defaultfg = 258;
|
unsigned int defaultfg = 15;
|
||||||
unsigned int defaultbg = 259;
|
unsigned int defaultbg = 256;
|
||||||
unsigned int defaultcs = 256;
|
unsigned int defaultcs = 15;
|
||||||
unsigned int defaultrcs = 257;
|
unsigned int defaultrcs = 256;
|
||||||
unsigned int selectionfg = 260;
|
unsigned int selectionfg = 15;
|
||||||
unsigned int selectionbg = 261;
|
unsigned int selectionbg = 257;
|
||||||
/* If 0 use selectionfg as foreground in order to have a uniform
|
/* If 0 use selectionfg as foreground in order to have a uniform
|
||||||
* foreground-color */
|
* foreground-color */
|
||||||
/* Else if 1 keep original foreground-color of each cell => more colors :) */
|
/* Else if 1 keep original foreground-color of each cell => more colors :) */
|
||||||
static int ignoreselfg = 1;
|
static int ignoreselfg = 1;
|
||||||
/* Foreground and background color of search results */
|
/* Foreground and background color of search results */
|
||||||
unsigned int highlightfg = 3;
|
unsigned int highlightfg = 256;
|
||||||
unsigned int highlightbg = 0;
|
unsigned int highlightbg = 3;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 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
|
* 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
|
||||||
|
|
Loading…
Reference in New Issue