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