diff options
| author | Mateja <mail@matejamaric.com> | 2021-04-07 12:49:06 +0200 | 
|---|---|---|
| committer | Mateja <mail@matejamaric.com> | 2021-04-07 12:55:08 +0200 | 
| commit | e9bb39d56fe9982b8a1b6e3f6864a10b4a35aa51 (patch) | |
| tree | eb013d701bfd26f3b3c2535ba1d29713b61c035a /config.def.h | |
| parent | 6f9f01061a2332460d02bb8071887d504d5f924c (diff) | |
| download | st-e9bb39d56fe9982b8a1b6e3f6864a10b4a35aa51.tar.gz st-e9bb39d56fe9982b8a1b6e3f6864a10b4a35aa51.zip | |
Applied alpha patch.v1.0.0
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/config.def.h b/config.def.h index f80d915..9f622d8 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.85; +  /* Terminal colors (16 first used in escape sequence) */  static const char *colorname[] = {  	/* 8 normal colors */ @@ -118,7 +121,7 @@ static const char *colorname[] = {  	[255] = 0,  	/* more colors can be added after 255 to use with DefaultXX */ -	"#2e3440", /* background */ +	"#000000", /* background */  	"#d8dee9", /* foreground */  }; | 
