diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -86,6 +86,9 @@ char *termname = "st-256color"; | |||
86 | * stty tabs | 86 | * stty tabs |
87 | */ | 87 | */ |
88 | unsigned int tabspaces = 8; | 88 | unsigned int tabspaces = 8; |
89 | |||
90 | /* bg opacity */ | ||
91 | float alpha = 0.8; | ||
89 | 92 | ||
90 | /* Terminal colors (16 first used in escape sequence) */ | 93 | /* Terminal colors (16 first used in escape sequence) */ |
91 | static const char *colorname[] = { | 94 | static const char *colorname[] = { |
@@ -114,6 +117,7 @@ static const char *colorname[] = { | |||
114 | /* more colors can be added after 255 to use with DefaultXX */ | 117 | /* more colors can be added after 255 to use with DefaultXX */ |
115 | "#cccccc", | 118 | "#cccccc", |
116 | "#555555", | 119 | "#555555", |
120 | "black", | ||
117 | }; | 121 | }; |
118 | 122 | ||
119 | 123 | ||
@@ -122,7 +126,7 @@ static const char *colorname[] = { | |||
122 | * foreground, background, cursor, reverse cursor | 126 | * foreground, background, cursor, reverse cursor |
123 | */ | 127 | */ |
124 | unsigned int defaultfg = 7; | 128 | unsigned int defaultfg = 7; |
125 | unsigned int defaultbg = 0; | 129 | unsigned int defaultbg = 258; |
126 | static unsigned int defaultcs = 256; | 130 | static unsigned int defaultcs = 256; |
127 | static unsigned int defaultrcs = 257; | 131 | static unsigned int defaultrcs = 257; |
128 | 132 | ||