You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
830 B
30 lines
830 B
3 years ago
|
--- config.def.h
|
||
|
+++ config.def.h
|
||
|
@@ -119,18 +119,23 @@ static const char *colorname[] = {
|
||
|
|
||
|
/* more colors can be added after 255 to use with DefaultXX */
|
||
|
"#cccccc",
|
||
|
- "#555555",
|
||
|
+ "#2e3440",
|
||
|
};
|
||
|
|
||
|
|
||
|
/*
|
||
|
* Default colors (colorname index)
|
||
|
- * foreground, background, cursor, reverse cursor
|
||
|
+ * foreground, background, cursor, reverse cursor, selection
|
||
|
*/
|
||
|
unsigned int defaultfg = 7;
|
||
|
unsigned int defaultbg = 0;
|
||
|
static unsigned int defaultcs = 256;
|
||
|
-static unsigned int defaultrcs = 257;
|
||
|
+static unsigned int defaultrcs = 256;
|
||
|
+unsigned int selectionbg = 257;
|
||
|
+unsigned int selectionfg = 7;
|
||
|
+/* If 0 use selectionfg as foreground in order to have a uniform foreground-color */
|
||
|
+/* Else if 1 keep original foreground-color of each cell => more colors :) */
|
||
|
+static int ignoreselfg = 1;
|
||
|
|
||
|
/*
|
||
|
* Default shape of cursor
|