diff options
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 2b5ea87..09a6d73 100644 --- a/config.def.h +++ b/config.def.h @@ -93,6 +93,9 @@ char *termname = "st-256color"; */ unsigned int tabspaces = 8; +/* bg opacity */ +float alpha = 0.8; + /* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { @@ -115,6 +118,8 @@ static const char *colorname[] = { [13] = "#d3869b", /* magenta */ [14] = "#8ec07c", /* cyan */ [15] = "#ebdbb2", /* white */ + + [16] = "black", }; /* @@ -122,7 +127,7 @@ static const char *colorname[] = { * foreground, background, cursor */ unsigned int defaultfg = 15; -unsigned int defaultbg = 0; +unsigned int defaultbg = 258; static unsigned int defaultcs = 15; static unsigned int defaultrcs = 257; |