diff options
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/config.def.h b/config.def.h index 85a1d17..546edda 100644 --- a/config.def.h +++ b/config.def.h | |||
@@ -82,9 +82,6 @@ char *termname = "st-256color"; | |||
82 | */ | 82 | */ |
83 | unsigned int tabspaces = 8; | 83 | unsigned int tabspaces = 8; |
84 | 84 | ||
85 | /* bg opacity */ | ||
86 | float alpha = 0.8; | ||
87 | |||
88 | /* Terminal colors (16 first used in escape sequence) */ | 85 | /* Terminal colors (16 first used in escape sequence) */ |
89 | static const char *colorname[] = { | 86 | static const char *colorname[] = { |
90 | /* 8 normal colors */ | 87 | /* 8 normal colors */ |
@@ -112,7 +109,6 @@ static const char *colorname[] = { | |||
112 | /* more colors can be added after 255 to use with DefaultXX */ | 109 | /* more colors can be added after 255 to use with DefaultXX */ |
113 | "#cccccc", | 110 | "#cccccc", |
114 | "#555555", | 111 | "#555555", |
115 | "black", | ||
116 | }; | 112 | }; |
117 | 113 | ||
118 | 114 | ||
@@ -121,7 +117,7 @@ static const char *colorname[] = { | |||
121 | * foreground, background, cursor, reverse cursor | 117 | * foreground, background, cursor, reverse cursor |
122 | */ | 118 | */ |
123 | unsigned int defaultfg = 7; | 119 | unsigned int defaultfg = 7; |
124 | unsigned int defaultbg = 258; | 120 | unsigned int defaultbg = 0; |
125 | static unsigned int defaultcs = 256; | 121 | static unsigned int defaultcs = 256; |
126 | static unsigned int defaultrcs = 257; | 122 | static unsigned int defaultrcs = 257; |
127 | 123 | ||