diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2021-09-12 18:48:08 +0400 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2021-09-12 18:48:08 +0400 |
| commit | b6ec42254c8782d438a882c59ab1587ff766ef7e (patch) | |
| tree | 82d11635bacb70de4668528e319f9f6994dd95c9 /config.def.h | |
| parent | 2faaa50b3725bded7b9a858b336a58293f769847 (diff) | |
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; |