commit ac5ab6677894c921abf111013e017fc0925fbeb1
parent c2472436087305170d69c65dd1cf11107b6de1c1
Author: Matsuda Kenji <info@mtkn.jp>
Date: Tue, 15 Oct 2024 14:13:43 +0900
change color
Diffstat:
1 file changed, 15 insertions(+), 1 deletion(-)
diff --git a/config.h b/config.h
@@ -111,14 +111,28 @@ typedef struct {
* foreground, background, cursor, reverse cursor
*/
static const ColorScheme schemes[] = {
+ // Monochrome dark
+ {{"black", "white", "white", "white",
+ "white", "white", "white", "white",
+ "white", "white", "white", "white",
+ "white", "white", "white", "white",
+ [256]="#cccccc", "#555555"}, 7, 0, 256, 257},
+
+ // Monochrome light
+ {{"white", "black", "black", "black",
+ "black", "black", "black", "black",
+ "black", "black", "black", "black",
+ "black", "black", "black", "black",
+ [256]="#888888", "#cccccc"}, 7, 0, 256, 257},
+
// One Half dark
{{"#000000", "#e06c75", "#98c379", "#e5c07b",
"#61afef", "#c678dd", "#56b6c2", "#ffffff",
"#282c34", "#e06c75", "#98c379", "#e5c07b",
"#61afef", "#c678dd", "#56b6c2", "#dcdfe4",
[256]="#cccccc", "#555555"}, 7, 0, 256, 257},
-
// One Half light
+
{{"#ffffff", "#e45649", "#50a14f", "#c18401",
"#0184bc", "#a626a4", "#0997b3", "black",
"#fafafa", "#e45649", "#50a14f", "#c18401",