summaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-03-10 19:52:41 -0700
committerLuke Smith <luke@lukesmith.xyz>2018-03-10 19:52:41 -0700
commit8c0ade2c1e4f2163c75d1a18e985531af0631bba (patch)
treef70cf2fff7ddb43bb435475b1d4e3e443b5db469 /config.def.h
parent3ffde570e098567f8f4608dfb554772c3e11321d (diff)
transparency now default
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 6bfd626..8ba1df1 100644
--- a/config.def.h
+++ b/config.def.h
@@ -82,6 +82,9 @@ static char termname[] = "st-256color";
*/
static unsigned int tabspaces = 8;
+/* bg opacity */
+static const int alpha = 0xaa;
+
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* solarized dark */
@@ -101,6 +104,7 @@ static const char *colorname[] = {
"#6c71c4", /* 13: brmagenta*/
"#93a1a1", /* 14: brcyan */
"#fdf6e3", /* 15: brwhite */
+ "black",
};
/* Terminal colors for alternate (light) palette */
@@ -122,6 +126,7 @@ static const char *altcolorname[] = {
"#6c71c4", /* 13: brmagenta*/
"#586e75", /* 14: brcyan */
"#002b36", /* 15: brwhite */
+ "black",
};
/*
@@ -129,7 +134,7 @@ static const char *altcolorname[] = {
* foreground, background, cursor, reverse cursor
*/
static unsigned int defaultfg = 12;
-static unsigned int defaultbg = 8;
+static unsigned int defaultbg = 257;
static unsigned int defaultcs = 14;
static unsigned int defaultrcs = 15;