Cutter colors

This commit is contained in:
2021-01-24 14:12:11 -03:00
parent 3734eb4dd7
commit fa279f6c6b
4 changed files with 23 additions and 24 deletions

View File

@@ -96,41 +96,40 @@ unsigned int tabspaces = 4;
/* 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", "#282A36",
"red3", "#F37F97",
"green3", "#5ADECD",
"yellow3", "#F2A272",
"blue2", "#8897F4",
"magenta3", "#C574DD",
"cyan3", "#79E6F3",
"gray90", "#FDFDFD",
/* 8 bright colors */ "#414458",
"gray50", "#FF4971",
"red", "#18E3C8",
"green", "#FF8037",
"yellow", "#556FFF",
"#5c5cff", "#B043D1",
"magenta", "#3FDCEE",
"cyan", "#BEBEC1",
"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", "#1D1F28",
"#555555", "#FDFDFD",
"#C574DD"
}; };
/* /*
* 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 = 257;
unsigned int defaultbg = 0; unsigned int defaultbg = 256;
static unsigned int defaultcs = 256; static unsigned int defaultcs = 258;
static unsigned int defaultrcs = 257; static unsigned int defaultrcs = 258;
/* /*
* Default shape of cursor * Default shape of cursor

BIN
st Executable file

Binary file not shown.

BIN
st.o Normal file

Binary file not shown.

BIN
x.o Normal file

Binary file not shown.