mirror of
https://github.com/LukeSmithxyz/st.git
synced 2024-11-22 07:15:59 +01:00
Merge pull request #79 from rjl6789/virgin
default fg, bg and cursor - modified so works with .Xresources
This commit is contained in:
commit
6c0c86191c
1 changed files with 5 additions and 5 deletions
10
config.h
10
config.h
|
@ -105,8 +105,8 @@ static const char *colorname[] = {
|
||||||
"#ebdbb2",
|
"#ebdbb2",
|
||||||
[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 */
|
||||||
"black", /* 256 -> bg */
|
"#282828", /* 256 -> bg */
|
||||||
"white", /* 257 -> fg */
|
"#ebdbb2", /* 257 -> fg */
|
||||||
"#add8e6", /* 258 -> cursor */
|
"#add8e6", /* 258 -> cursor */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -115,9 +115,9 @@ static const char *colorname[] = {
|
||||||
* Default colors (colorname index)
|
* Default colors (colorname index)
|
||||||
* foreground, background, cursor, reverse cursor
|
* foreground, background, cursor, reverse cursor
|
||||||
*/
|
*/
|
||||||
unsigned int defaultfg = 15;
|
unsigned int defaultfg = 257;
|
||||||
unsigned int defaultbg = 0;
|
unsigned int defaultbg = 256;
|
||||||
static unsigned int defaultcs = 15;
|
static unsigned int defaultcs = 258;
|
||||||
static unsigned int defaultrcs = 0;
|
static unsigned int defaultrcs = 0;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue