aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorLoek Le Blansch <l.leblansch@gmail.com>2020-07-16 11:20:56 +0200
committerLoek Le Blansch <l.leblansch@gmail.com>2020-07-16 11:20:56 +0200
commit6abda3faad50bdf96c994c9a5fd41f275e7d6842 (patch)
treef4840fbd31bee5f2cde6b739e40301fb209fcdd7 /config.def.h
parent1fe8489deda0f8efc407d7b05df0eedce452ffef (diff)
alpha + config
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index bf62f52..5c65aa4 100644
--- a/config.def.h
+++ b/config.def.h
@@ -93,6 +93,9 @@ char *termname = "st-256color";
*/
unsigned int tabspaces = 4;
+/* bg opacity */
+float alpha = 0.92;
+
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
@@ -120,6 +123,7 @@ static const char *colorname[] = {
/* more colors can be added after 255 to use with DefaultXX */
"#cccccc",
"#555555",
+ "black",
};
@@ -128,7 +132,7 @@ static const char *colorname[] = {
* foreground, background, cursor, reverse cursor
*/
unsigned int defaultfg = 7;
-unsigned int defaultbg = 0;
+unsigned int defaultbg = 258;
static unsigned int defaultcs = 256;
static unsigned int defaultrcs = 257;