Cutter colors
This commit is contained in:
47
config.h
47
config.h
@@ -96,41 +96,40 @@ unsigned int tabspaces = 4;
|
||||
/* Terminal colors (16 first used in escape sequence) */
|
||||
static const char *colorname[] = {
|
||||
/* 8 normal colors */
|
||||
"black",
|
||||
"red3",
|
||||
"green3",
|
||||
"yellow3",
|
||||
"blue2",
|
||||
"magenta3",
|
||||
"cyan3",
|
||||
"gray90",
|
||||
"#282A36",
|
||||
"#F37F97",
|
||||
"#5ADECD",
|
||||
"#F2A272",
|
||||
"#8897F4",
|
||||
"#C574DD",
|
||||
"#79E6F3",
|
||||
"#FDFDFD",
|
||||
|
||||
/* 8 bright colors */
|
||||
"gray50",
|
||||
"red",
|
||||
"green",
|
||||
"yellow",
|
||||
"#5c5cff",
|
||||
"magenta",
|
||||
"cyan",
|
||||
"white",
|
||||
"#414458",
|
||||
"#FF4971",
|
||||
"#18E3C8",
|
||||
"#FF8037",
|
||||
"#556FFF",
|
||||
"#B043D1",
|
||||
"#3FDCEE",
|
||||
"#BEBEC1",
|
||||
|
||||
[255] = 0,
|
||||
|
||||
/* more colors can be added after 255 to use with DefaultXX */
|
||||
"#cccccc",
|
||||
"#555555",
|
||||
"#1D1F28",
|
||||
"#FDFDFD",
|
||||
"#C574DD"
|
||||
};
|
||||
|
||||
|
||||
/*
|
||||
* Default colors (colorname index)
|
||||
* foreground, background, cursor, reverse cursor
|
||||
*/
|
||||
unsigned int defaultfg = 7;
|
||||
unsigned int defaultbg = 0;
|
||||
static unsigned int defaultcs = 256;
|
||||
static unsigned int defaultrcs = 257;
|
||||
unsigned int defaultfg = 257;
|
||||
unsigned int defaultbg = 256;
|
||||
static unsigned int defaultcs = 258;
|
||||
static unsigned int defaultrcs = 258;
|
||||
|
||||
/*
|
||||
* Default shape of cursor
|
||||
|
||||
Reference in New Issue
Block a user