change colors
Build/Publish XBPS / build-and-publish (push) Failing after 7s Details

This commit is contained in:
Luca Bilke 2024-05-17 10:26:12 +02:00
parent b1119f262d
commit 71fd850d8c
No known key found for this signature in database
GPG Key ID: B753481DA0B6FA47
1 changed files with 10 additions and 14 deletions

View File

@ -153,31 +153,27 @@ static const char *colorname[] = {
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
"#c0caf5", /* 256 -> default cursor colour */
"#1a1b26", /* 257 -> default inverted cursor colour */
"#c0caf5", /* 258 -> default foreground colour */
"#1a1b26", /* 259 -> default background colour */
"#c0caf5", /* 260 -> default selection foreground colour */
"#33467C", /* 261 -> default selection background colour */
"#1a1b26", /* 256 -> darker black */
"#283457", /* 257 -> selection background colour */
};
/*
* Default colors (colorname index)
* foreground, background, cursor, reverse cursor
*/
unsigned int defaultfg = 258;
unsigned int defaultbg = 259;
unsigned int defaultcs = 256;
unsigned int defaultrcs = 257;
unsigned int selectionfg = 260;
unsigned int selectionbg = 261;
unsigned int defaultfg = 15;
unsigned int defaultbg = 256;
unsigned int defaultcs = 15;
unsigned int defaultrcs = 256;
unsigned int selectionfg = 15;
unsigned int selectionbg = 257;
/* If 0 use selectionfg as foreground in order to have a uniform
* foreground-color */
/* Else if 1 keep original foreground-color of each cell => more colors :) */
static int ignoreselfg = 1;
/* Foreground and background color of search results */
unsigned int highlightfg = 3;
unsigned int highlightbg = 0;
unsigned int highlightfg = 256;
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