-
Notifications
You must be signed in to change notification settings - Fork 0
/
colors
292 lines (284 loc) · 36.5 KB
/
colors
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
#
## colors, colors, attributes, and more colors
# Sourced when mtime changes on ~/.bash/prompt, used in a function to rebuild
# ~/var/bash/prompt, which acts as a PS1 cache so we don't have the expense or
# environment litter of doing all these variable assignments every shell
# invocation. Function should be unset by caller.
local COLOR_escape="\033["
local COLOR_bold=";01"
local COLOR_reset=";00"
local COLOR_flash=";05"
local COLOR_endesc="m"
local COLOR_fgblack=";30"
local COLOR_fgred=";31"
local COLOR_fggreen=";32"
local COLOR_fgyellow=";33"
local COLOR_fgblue=";34"
local COLOR_fgmagenta=";35"
local COLOR_fgcyan=";36"
local COLOR_fgwhite=";37"
local COLOR_bgblack=";40"
local COLOR_bgred=";41"
local COLOR_bggreen=";42"
local COLOR_bgyellow=";43"
local COLOR_bgblue=";44"
local COLOR_bgmagenta=";45"
local COLOR_bgcyan=";46"
local COLOR_bgwhite=";47"
local CLR_flash_bold_fgblack_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblack}${COLOR_bgblack}${COLOR_endesc}"
local CLR_flash_bold_fgblack_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblack}${COLOR_bgred}${COLOR_endesc}"
local CLR_flash_bold_fgblack_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblack}${COLOR_bggreen}${COLOR_endesc}"
local CLR_flash_bold_fgblack_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblack}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_flash_bold_fgblack_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblack}${COLOR_bgblue}${COLOR_endesc}"
local CLR_flash_bold_fgblack_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblack}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_flash_bold_fgblack_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblack}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_flash_bold_fgblack_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblack}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_flash_bold_fgred_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgred}${COLOR_bgblack}${COLOR_endesc}"
local CLR_flash_bold_fgred_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgred}${COLOR_bgred}${COLOR_endesc}"
local CLR_flash_bold_fgred_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgred}${COLOR_bggreen}${COLOR_endesc}"
local CLR_flash_bold_fgred_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgred}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_flash_bold_fgred_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgred}${COLOR_bgblue}${COLOR_endesc}"
local CLR_flash_bold_fgred_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgred}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_flash_bold_fgred_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgred}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_flash_bold_fgred_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgred}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_flash_bold_fggreen_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fggreen}${COLOR_bgblack}${COLOR_endesc}"
local CLR_flash_bold_fggreen_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fggreen}${COLOR_bgred}${COLOR_endesc}"
local CLR_flash_bold_fggreen_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fggreen}${COLOR_bggreen}${COLOR_endesc}"
local CLR_flash_bold_fggreen_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fggreen}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_flash_bold_fggreen_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fggreen}${COLOR_bgblue}${COLOR_endesc}"
local CLR_flash_bold_fggreen_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fggreen}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_flash_bold_fggreen_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fggreen}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_flash_bold_fggreen_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fggreen}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_flash_bold_fgyellow_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgblack}${COLOR_endesc}"
local CLR_flash_bold_fgyellow_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgred}${COLOR_endesc}"
local CLR_flash_bold_fgyellow_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgyellow}${COLOR_bggreen}${COLOR_endesc}"
local CLR_flash_bold_fgyellow_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_flash_bold_fgyellow_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgblue}${COLOR_endesc}"
local CLR_flash_bold_fgyellow_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_flash_bold_fgyellow_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_flash_bold_fgyellow_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_flash_bold_fgblue_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblue}${COLOR_bgblack}${COLOR_endesc}"
local CLR_flash_bold_fgblue_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblue}${COLOR_bgred}${COLOR_endesc}"
local CLR_flash_bold_fgblue_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblue}${COLOR_bggreen}${COLOR_endesc}"
local CLR_flash_bold_fgblue_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblue}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_flash_bold_fgblue_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblue}${COLOR_bgblue}${COLOR_endesc}"
local CLR_flash_bold_fgblue_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblue}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_flash_bold_fgblue_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblue}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_flash_bold_fgblue_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgblue}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_flash_bold_fgmagenta_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgblack}${COLOR_endesc}"
local CLR_flash_bold_fgmagenta_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgred}${COLOR_endesc}"
local CLR_flash_bold_fgmagenta_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bggreen}${COLOR_endesc}"
local CLR_flash_bold_fgmagenta_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_flash_bold_fgmagenta_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgblue}${COLOR_endesc}"
local CLR_flash_bold_fgmagenta_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_flash_bold_fgmagenta_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_flash_bold_fgmagenta_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_flash_bold_fgcyan_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgblack}${COLOR_endesc}"
local CLR_flash_bold_fgcyan_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgred}${COLOR_endesc}"
local CLR_flash_bold_fgcyan_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgcyan}${COLOR_bggreen}${COLOR_endesc}"
local CLR_flash_bold_fgcyan_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_flash_bold_fgcyan_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgblue}${COLOR_endesc}"
local CLR_flash_bold_fgcyan_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_flash_bold_fgcyan_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_flash_bold_fgcyan_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_flash_bold_fgwhite_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgblack}${COLOR_endesc}"
local CLR_flash_bold_fgwhite_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgred}${COLOR_endesc}"
local CLR_flash_bold_fgwhite_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgwhite}${COLOR_bggreen}${COLOR_endesc}"
local CLR_flash_bold_fgwhite_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_flash_bold_fgwhite_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgblue}${COLOR_endesc}"
local CLR_flash_bold_fgwhite_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_flash_bold_fgwhite_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_flash_bold_fgwhite_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_flash_flat_fgblack_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblack}${COLOR_bgblack}${COLOR_endesc}"
local CLR_flash_flat_fgblack_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblack}${COLOR_bgred}${COLOR_endesc}"
local CLR_flash_flat_fgblack_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblack}${COLOR_bggreen}${COLOR_endesc}"
local CLR_flash_flat_fgblack_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblack}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_flash_flat_fgblack_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblack}${COLOR_bgblue}${COLOR_endesc}"
local CLR_flash_flat_fgblack_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblack}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_flash_flat_fgblack_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblack}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_flash_flat_fgblack_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblack}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_flash_flat_fgred_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgred}${COLOR_bgblack}${COLOR_endesc}"
local CLR_flash_flat_fgred_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgred}${COLOR_bgred}${COLOR_endesc}"
local CLR_flash_flat_fgred_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgred}${COLOR_bggreen}${COLOR_endesc}"
local CLR_flash_flat_fgred_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgred}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_flash_flat_fgred_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgred}${COLOR_bgblue}${COLOR_endesc}"
local CLR_flash_flat_fgred_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgred}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_flash_flat_fgred_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgred}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_flash_flat_fgred_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgred}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_flash_flat_fggreen_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fggreen}${COLOR_bgblack}${COLOR_endesc}"
local CLR_flash_flat_fggreen_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fggreen}${COLOR_bgred}${COLOR_endesc}"
local CLR_flash_flat_fggreen_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fggreen}${COLOR_bggreen}${COLOR_endesc}"
local CLR_flash_flat_fggreen_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fggreen}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_flash_flat_fggreen_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fggreen}${COLOR_bgblue}${COLOR_endesc}"
local CLR_flash_flat_fggreen_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fggreen}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_flash_flat_fggreen_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fggreen}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_flash_flat_fggreen_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fggreen}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_flash_flat_fgyellow_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgblack}${COLOR_endesc}"
local CLR_flash_flat_fgyellow_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgred}${COLOR_endesc}"
local CLR_flash_flat_fgyellow_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgyellow}${COLOR_bggreen}${COLOR_endesc}"
local CLR_flash_flat_fgyellow_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_flash_flat_fgyellow_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgblue}${COLOR_endesc}"
local CLR_flash_flat_fgyellow_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_flash_flat_fgyellow_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_flash_flat_fgyellow_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_flash_flat_fgblue_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblue}${COLOR_bgblack}${COLOR_endesc}"
local CLR_flash_flat_fgblue_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblue}${COLOR_bgred}${COLOR_endesc}"
local CLR_flash_flat_fgblue_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblue}${COLOR_bggreen}${COLOR_endesc}"
local CLR_flash_flat_fgblue_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblue}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_flash_flat_fgblue_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblue}${COLOR_bgblue}${COLOR_endesc}"
local CLR_flash_flat_fgblue_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblue}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_flash_flat_fgblue_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblue}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_flash_flat_fgblue_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgblue}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_flash_flat_fgmagenta_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgblack}${COLOR_endesc}"
local CLR_flash_flat_fgmagenta_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgred}${COLOR_endesc}"
local CLR_flash_flat_fgmagenta_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bggreen}${COLOR_endesc}"
local CLR_flash_flat_fgmagenta_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_flash_flat_fgmagenta_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgblue}${COLOR_endesc}"
local CLR_flash_flat_fgmagenta_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_flash_flat_fgmagenta_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_flash_flat_fgmagenta_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_flash_flat_fgcyan_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgblack}${COLOR_endesc}"
local CLR_flash_flat_fgcyan_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgred}${COLOR_endesc}"
local CLR_flash_flat_fgcyan_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgcyan}${COLOR_bggreen}${COLOR_endesc}"
local CLR_flash_flat_fgcyan_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_flash_flat_fgcyan_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgblue}${COLOR_endesc}"
local CLR_flash_flat_fgcyan_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_flash_flat_fgcyan_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_flash_flat_fgcyan_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_flash_flat_fgwhite_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgblack}${COLOR_endesc}"
local CLR_flash_flat_fgwhite_bgred="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgred}${COLOR_endesc}"
local CLR_flash_flat_fgwhite_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgwhite}${COLOR_bggreen}${COLOR_endesc}"
local CLR_flash_flat_fgwhite_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_flash_flat_fgwhite_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgblue}${COLOR_endesc}"
local CLR_flash_flat_fgwhite_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_flash_flat_fgwhite_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_flash_flat_fgwhite_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_flash}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_solid_bold_fgblack_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblack}${COLOR_bgblack}${COLOR_endesc}"
local CLR_solid_bold_fgblack_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblack}${COLOR_bgred}${COLOR_endesc}"
local CLR_solid_bold_fgblack_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblack}${COLOR_bggreen}${COLOR_endesc}"
local CLR_solid_bold_fgblack_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblack}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_solid_bold_fgblack_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblack}${COLOR_bgblue}${COLOR_endesc}"
local CLR_solid_bold_fgblack_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblack}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_solid_bold_fgblack_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblack}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_solid_bold_fgblack_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblack}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_solid_bold_fgred_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgred}${COLOR_bgblack}${COLOR_endesc}"
local CLR_solid_bold_fgred_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgred}${COLOR_bgred}${COLOR_endesc}"
local CLR_solid_bold_fgred_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgred}${COLOR_bggreen}${COLOR_endesc}"
local CLR_solid_bold_fgred_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgred}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_solid_bold_fgred_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgred}${COLOR_bgblue}${COLOR_endesc}"
local CLR_solid_bold_fgred_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgred}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_solid_bold_fgred_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgred}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_solid_bold_fgred_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgred}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_solid_bold_fggreen_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fggreen}${COLOR_bgblack}${COLOR_endesc}"
local CLR_solid_bold_fggreen_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fggreen}${COLOR_bgred}${COLOR_endesc}"
local CLR_solid_bold_fggreen_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fggreen}${COLOR_bggreen}${COLOR_endesc}"
local CLR_solid_bold_fggreen_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fggreen}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_solid_bold_fggreen_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fggreen}${COLOR_bgblue}${COLOR_endesc}"
local CLR_solid_bold_fggreen_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fggreen}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_solid_bold_fggreen_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fggreen}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_solid_bold_fggreen_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fggreen}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_solid_bold_fgyellow_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgblack}${COLOR_endesc}"
local CLR_solid_bold_fgyellow_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgred}${COLOR_endesc}"
local CLR_solid_bold_fgyellow_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgyellow}${COLOR_bggreen}${COLOR_endesc}"
local CLR_solid_bold_fgyellow_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_solid_bold_fgyellow_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgblue}${COLOR_endesc}"
local CLR_solid_bold_fgyellow_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_solid_bold_fgyellow_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_solid_bold_fgyellow_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgyellow}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_solid_bold_fgblue_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblue}${COLOR_bgblack}${COLOR_endesc}"
local CLR_solid_bold_fgblue_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblue}${COLOR_bgred}${COLOR_endesc}"
local CLR_solid_bold_fgblue_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblue}${COLOR_bggreen}${COLOR_endesc}"
local CLR_solid_bold_fgblue_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblue}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_solid_bold_fgblue_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblue}${COLOR_bgblue}${COLOR_endesc}"
local CLR_solid_bold_fgblue_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblue}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_solid_bold_fgblue_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblue}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_solid_bold_fgblue_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgblue}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_solid_bold_fgmagenta_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgblack}${COLOR_endesc}"
local CLR_solid_bold_fgmagenta_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgred}${COLOR_endesc}"
local CLR_solid_bold_fgmagenta_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bggreen}${COLOR_endesc}"
local CLR_solid_bold_fgmagenta_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_solid_bold_fgmagenta_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgblue}${COLOR_endesc}"
local CLR_solid_bold_fgmagenta_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_solid_bold_fgmagenta_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_solid_bold_fgmagenta_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgmagenta}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_solid_bold_fgcyan_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgblack}${COLOR_endesc}"
local CLR_solid_bold_fgcyan_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgred}${COLOR_endesc}"
local CLR_solid_bold_fgcyan_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgcyan}${COLOR_bggreen}${COLOR_endesc}"
local CLR_solid_bold_fgcyan_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_solid_bold_fgcyan_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgblue}${COLOR_endesc}"
local CLR_solid_bold_fgcyan_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_solid_bold_fgcyan_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_solid_bold_fgcyan_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgcyan}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_solid_bold_fgwhite_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgblack}${COLOR_endesc}"
local CLR_solid_bold_fgwhite_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgred}${COLOR_endesc}"
local CLR_solid_bold_fgwhite_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgwhite}${COLOR_bggreen}${COLOR_endesc}"
local CLR_solid_bold_fgwhite_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_solid_bold_fgwhite_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgblue}${COLOR_endesc}"
local CLR_solid_bold_fgwhite_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_solid_bold_fgwhite_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_solid_bold_fgwhite_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_bold}${COLOR_fgwhite}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_solid_flat_fgblack_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblack}${COLOR_bgblack}${COLOR_endesc}"
local CLR_solid_flat_fgblack_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblack}${COLOR_bgred}${COLOR_endesc}"
local CLR_solid_flat_fgblack_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblack}${COLOR_bggreen}${COLOR_endesc}"
local CLR_solid_flat_fgblack_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblack}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_solid_flat_fgblack_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblack}${COLOR_bgblue}${COLOR_endesc}"
local CLR_solid_flat_fgblack_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblack}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_solid_flat_fgblack_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblack}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_solid_flat_fgblack_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblack}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_solid_flat_fgred_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgred}${COLOR_bgblack}${COLOR_endesc}"
local CLR_solid_flat_fgred_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgred}${COLOR_bgred}${COLOR_endesc}"
local CLR_solid_flat_fgred_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgred}${COLOR_bggreen}${COLOR_endesc}"
local CLR_solid_flat_fgred_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgred}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_solid_flat_fgred_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgred}${COLOR_bgblue}${COLOR_endesc}"
local CLR_solid_flat_fgred_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgred}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_solid_flat_fgred_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgred}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_solid_flat_fgred_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgred}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_solid_flat_fggreen_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fggreen}${COLOR_bgblack}${COLOR_endesc}"
local CLR_solid_flat_fggreen_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fggreen}${COLOR_bgred}${COLOR_endesc}"
local CLR_solid_flat_fggreen_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fggreen}${COLOR_bggreen}${COLOR_endesc}"
local CLR_solid_flat_fggreen_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fggreen}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_solid_flat_fggreen_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fggreen}${COLOR_bgblue}${COLOR_endesc}"
local CLR_solid_flat_fggreen_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fggreen}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_solid_flat_fggreen_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fggreen}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_solid_flat_fggreen_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fggreen}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_solid_flat_fgyellow_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgblack}${COLOR_endesc}"
local CLR_solid_flat_fgyellow_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgred}${COLOR_endesc}"
local CLR_solid_flat_fgyellow_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgyellow}${COLOR_bggreen}${COLOR_endesc}"
local CLR_solid_flat_fgyellow_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_solid_flat_fgyellow_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgblue}${COLOR_endesc}"
local CLR_solid_flat_fgyellow_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_solid_flat_fgyellow_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_solid_flat_fgyellow_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgyellow}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_solid_flat_fgblue_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblue}${COLOR_bgblack}${COLOR_endesc}"
local CLR_solid_flat_fgblue_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblue}${COLOR_bgred}${COLOR_endesc}"
local CLR_solid_flat_fgblue_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblue}${COLOR_bggreen}${COLOR_endesc}"
local CLR_solid_flat_fgblue_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblue}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_solid_flat_fgblue_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblue}${COLOR_bgblue}${COLOR_endesc}"
local CLR_solid_flat_fgblue_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblue}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_solid_flat_fgblue_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblue}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_solid_flat_fgblue_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgblue}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_solid_flat_fgmagenta_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgblack}${COLOR_endesc}"
local CLR_solid_flat_fgmagenta_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgred}${COLOR_endesc}"
local CLR_solid_flat_fgmagenta_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bggreen}${COLOR_endesc}"
local CLR_solid_flat_fgmagenta_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_solid_flat_fgmagenta_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgblue}${COLOR_endesc}"
local CLR_solid_flat_fgmagenta_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_solid_flat_fgmagenta_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_solid_flat_fgmagenta_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgmagenta}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_solid_flat_fgcyan_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgblack}${COLOR_endesc}"
local CLR_solid_flat_fgcyan_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgred}${COLOR_endesc}"
local CLR_solid_flat_fgcyan_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgcyan}${COLOR_bggreen}${COLOR_endesc}"
local CLR_solid_flat_fgcyan_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_solid_flat_fgcyan_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgblue}${COLOR_endesc}"
local CLR_solid_flat_fgcyan_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_solid_flat_fgcyan_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_solid_flat_fgcyan_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgcyan}${COLOR_bgwhite}${COLOR_endesc}"
local CLR_solid_flat_fgwhite_bgblack="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgblack}${COLOR_endesc}"
local CLR_solid_flat_fgwhite_bgred="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgred}${COLOR_endesc}"
local CLR_solid_flat_fgwhite_bggreen="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgwhite}${COLOR_bggreen}${COLOR_endesc}"
local CLR_solid_flat_fgwhite_bgyellow="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgyellow}${COLOR_endesc}"
local CLR_solid_flat_fgwhite_bgblue="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgblue}${COLOR_endesc}"
local CLR_solid_flat_fgwhite_bgmagenta="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgmagenta}${COLOR_endesc}"
local CLR_solid_flat_fgwhite_bgcyan="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgcyan}${COLOR_endesc}"
local CLR_solid_flat_fgwhite_bgwhite="${COLOR_escape}${COLOR_reset}${COLOR_solid}${COLOR_flat}${COLOR_fgwhite}${COLOR_bgwhite}${COLOR_endesc}"
# vim:syn=sh:nowrap: