feat(st): alacritty default colors
This commit is contained in:
parent
b2b2f5886d
commit
6eff2c0b4d
@ -99,31 +99,31 @@ float alpha = .9;
|
|||||||
/* 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",
|
"#181818",
|
||||||
"red3",
|
"#ac4242",
|
||||||
"green3",
|
"#90a959",
|
||||||
"yellow3",
|
"#f4bf75",
|
||||||
"blue2",
|
"#6a9fb5",
|
||||||
"magenta3",
|
"#aa759f",
|
||||||
"cyan3",
|
"#75b5aa",
|
||||||
"gray90",
|
"#d8d8d8",
|
||||||
|
|
||||||
/* 8 bright colors */
|
/* 8 bright colors */
|
||||||
"gray50",
|
"#6b6b6b",
|
||||||
"red",
|
"#c55555",
|
||||||
"green",
|
"#aac474",
|
||||||
"yellow",
|
"#feca88",
|
||||||
"#5c5cff",
|
"#82b8c8",
|
||||||
"magenta",
|
"#c28cb8",
|
||||||
"cyan",
|
"#93d3c3",
|
||||||
"white",
|
"#f8f8f8",
|
||||||
|
|
||||||
[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",
|
||||||
"gray90", /* default foreground colour */
|
"#d8d8d8", /* default foreground colour */
|
||||||
"#101010", /* default background colour */
|
"#101010", /* default background colour */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user