add comments with the color names
This commit is contained in:
parent
f823657340
commit
df69a9b1f5
32
config.h
32
config.h
|
@ -16,22 +16,22 @@ static const char *foreground_color = "#dcdccc";
|
||||||
static const char *background_color = "#3f3f3f";
|
static const char *background_color = "#3f3f3f";
|
||||||
|
|
||||||
static const char *colors[16] = {
|
static const char *colors[16] = {
|
||||||
"#3f3f3f",
|
"#3f3f3f", // black
|
||||||
"#705050",
|
"#705050", // red
|
||||||
"#60b48a",
|
"#60b48a", // green
|
||||||
"#dfaf8f",
|
"#dfaf8f", // yellow
|
||||||
"#506070",
|
"#506070", // blue
|
||||||
"#dc8cc3",
|
"#dc8cc3", // magenta
|
||||||
"#8cd0d3",
|
"#8cd0d3", // cyan
|
||||||
"#dcdccc",
|
"#dcdccc", // white
|
||||||
"#709080",
|
"#709080", // bright black
|
||||||
"#dca3a3",
|
"#dca3a3", // bright red
|
||||||
"#c3bf9f",
|
"#c3bf9f", // bright green
|
||||||
"#f0dfaf",
|
"#f0dfaf", // bright yellow
|
||||||
"#94bff3",
|
"#94bff3", // bright blue
|
||||||
"#ec93d3",
|
"#ec93d3", // bright magenta
|
||||||
"#93e0e3",
|
"#93e0e3", // bright cyan
|
||||||
"#ffffff",
|
"#ffffff", // bright white
|
||||||
};
|
};
|
||||||
|
|
||||||
static const bool scroll_on_output = false;
|
static const bool scroll_on_output = false;
|
||||||
|
|
Loading…
Reference in New Issue