Changed colorscheme to cyberpunk
This commit is contained in:
@@ -98,44 +98,73 @@ unsigned int tabspaces = 8;
|
|||||||
float alpha = 0.80;
|
float alpha = 0.80;
|
||||||
|
|
||||||
/* Terminal colors (16 first used in escape sequence) */
|
/* Terminal colors (16 first used in escape sequence) */
|
||||||
static const char *colorname[] = {
|
//static const char *colorname[] = {
|
||||||
/* 8 normal colors */
|
// /* 8 normal colors */
|
||||||
"black",
|
// "black",
|
||||||
"red3",
|
// "red3",
|
||||||
"green3",
|
// "green3",
|
||||||
"yellow3",
|
// "yellow3",
|
||||||
"blue2",
|
// "blue2",
|
||||||
"magenta3",
|
// "magenta3",
|
||||||
"cyan3",
|
// "cyan3",
|
||||||
"gray90",
|
// "gray90",
|
||||||
|
//
|
||||||
/* 8 bright colors */
|
// /* 8 bright colors */
|
||||||
"gray50",
|
// "gray50",
|
||||||
"red",
|
// "red",
|
||||||
"green",
|
// "green",
|
||||||
"yellow",
|
// "yellow",
|
||||||
"#5c5cff",
|
// "#5c5cff",
|
||||||
"magenta",
|
// "magenta",
|
||||||
"cyan",
|
// "cyan",
|
||||||
"white",
|
// "white",
|
||||||
|
//
|
||||||
[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 */
|
||||||
"#cccccc",
|
// "#cccccc",
|
||||||
"#555555",
|
// "#555555",
|
||||||
"black",
|
// "black",
|
||||||
};
|
//};
|
||||||
|
|
||||||
|
/* Terminal colors (16 first used in escape sequence) */
|
||||||
|
static const char *colorname[] = {
|
||||||
|
/* 8 normal colors */
|
||||||
|
[0] = "#123e7c",
|
||||||
|
[1] = "#ff0000",
|
||||||
|
[2] = "#d300c4",
|
||||||
|
[3] = "#f57800",
|
||||||
|
[4] = "#123e7c",
|
||||||
|
[5] = "#711c91",
|
||||||
|
[6] = "#0abdc6",
|
||||||
|
[7] = "#d7d7d5",
|
||||||
|
|
||||||
|
/* 8 bright colors */
|
||||||
|
[8] = "#1c61c2",
|
||||||
|
[9] = "#ff0000",
|
||||||
|
[10] = "#d300c4",
|
||||||
|
[11] = "#f57800",
|
||||||
|
[12] = "#00ff00",
|
||||||
|
[13] = "#711c91",
|
||||||
|
[14] = "#0abdc6",
|
||||||
|
[15] = "#d7d7d5",
|
||||||
|
|
||||||
|
[255] = 0,
|
||||||
|
|
||||||
|
/* more colors can be added after 255 to use with DefaultXX */
|
||||||
|
[256] = "#0abdc6", // foreground
|
||||||
|
[257] = "#000b1e", // background
|
||||||
|
[258] = "#ffffff", // cursor
|
||||||
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Default colors (colorname index)
|
* Default colors (colorname index)
|
||||||
* foreground, background, cursor, reverse cursor
|
* foreground, background, cursor, reverse cursor
|
||||||
*/
|
*/
|
||||||
unsigned int defaultfg = 7;
|
unsigned int defaultfg = 256;
|
||||||
unsigned int defaultbg = 258;
|
unsigned int defaultbg = 257;
|
||||||
static unsigned int defaultcs = 256;
|
unsigned int defaultcs = 258;
|
||||||
static unsigned int defaultrcs = 257;
|
static unsigned int defaultrcs = 258;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Default shape of cursor
|
* Default shape of cursor
|
||||||
|
|||||||
Reference in New Issue
Block a user