remove old config
This commit is contained in:
parent
eb44e5b10e
commit
3d0bbe6a65
1 changed files with 30 additions and 16 deletions
|
@ -100,30 +100,44 @@ float alpha = 0.8;
|
||||||
static const char *colorname[] = {
|
static const char *colorname[] = {
|
||||||
/* 8 normal colors */
|
/* 8 normal colors */
|
||||||
"#2b303b",
|
"#2b303b",
|
||||||
"#343d46",
|
// "#343d46",
|
||||||
"#4f5b66",
|
// "#4f5b66",
|
||||||
"#65737e",
|
// "#65737e",
|
||||||
"#a7adba",
|
// "#a7adba",
|
||||||
"#c0c5ce",
|
|
||||||
"#dfe1e8",
|
|
||||||
"#eff1f5",
|
|
||||||
|
|
||||||
/* 8 bright colors */
|
|
||||||
"#bf616a",
|
"#bf616a",
|
||||||
"#d08770",
|
|
||||||
"#ebcb8b",
|
|
||||||
"#a3be8c",
|
"#a3be8c",
|
||||||
"#96b5b4",
|
"#ebcb8b",
|
||||||
"#8fa1b3",
|
"#8fa1b3",
|
||||||
"#b48ead",
|
"#b48ead",
|
||||||
"#ab7967",
|
"#96b5b4",
|
||||||
|
"#c0c5ce",
|
||||||
|
// "#dfe1e8",
|
||||||
|
// "#eff1f5",
|
||||||
|
|
||||||
|
/* 8 bright colors */
|
||||||
|
// "#bf616a",
|
||||||
|
// "#d08770",
|
||||||
|
// "#ebcb8b",
|
||||||
|
// "#a3be8c",
|
||||||
|
// "#96b5b4",
|
||||||
|
// "#8fa1b3",
|
||||||
|
// "#b48ead",
|
||||||
|
// "#ab7967",
|
||||||
|
"#65737e",
|
||||||
|
"#bf616a",
|
||||||
|
"#a3be8c",
|
||||||
|
"#ebcb8b",
|
||||||
|
"#8fa1b3",
|
||||||
|
"#b48ead",
|
||||||
|
"#96b5b4",
|
||||||
|
"#eff1f5",
|
||||||
|
|
||||||
[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 */
|
||||||
"#96b5b4", /* 256 -> cursor */
|
"#96b5b4", /* 256 -> cursor */
|
||||||
"#a7adba", /* 257 -> rev cursor*/
|
"#a7adba", /* 257 -> rev cursor*/
|
||||||
"#343d46", /* 258 -> bg */
|
"#2b303b", /* 258 -> bg */
|
||||||
"#dfe1e8", /* 259 -> fg */
|
"#dfe1e8", /* 259 -> fg */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -132,8 +146,8 @@ 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 = 258;
|
unsigned int defaultfg = 259;
|
||||||
unsigned int defaultbg = 259;
|
unsigned int defaultbg = 258;
|
||||||
unsigned int defaultcs = 256;
|
unsigned int defaultcs = 256;
|
||||||
static unsigned int defaultrcs = 257;
|
static unsigned int defaultrcs = 257;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue