Colors.
This commit is contained in:
parent
352b28b8d0
commit
94866cb9f3
2 changed files with 6 additions and 7 deletions
|
@ -116,9 +116,8 @@ static const char *colorname[] = {
|
|||
[255] = 0,
|
||||
|
||||
/* more colors can be added after 255 to use with DefaultXX */
|
||||
//"#f8f8f2",
|
||||
"#c7c7c7", /* 256 -> foreground */
|
||||
"#272822", /* 257 -> background */
|
||||
"#272822", /* 256 -> background */
|
||||
"#c7c7c7", /* 257 -> foreground */
|
||||
"#c7c7c7", /* 258 -> cursor */
|
||||
"#161616", /* 259 -> cursor text */
|
||||
};
|
||||
|
@ -128,8 +127,8 @@ static const char *colorname[] = {
|
|||
* Default colors (colorname index)
|
||||
* foreground, background, cursor, reverse cursor
|
||||
*/
|
||||
unsigned int defaultfg = 256;
|
||||
unsigned int defaultbg = 257;
|
||||
unsigned int defaultbg = 256;
|
||||
unsigned int defaultfg = 257;
|
||||
unsigned int defaultcs = 258;
|
||||
static unsigned int defaultrcs = 259;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue