-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEscapeCodeList.ts
352 lines (346 loc) · 12.7 KB
/
EscapeCodeList.ts
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
/**
* @see https://www.rapidtables.com/web/color/RGB_Color.html
*
* Format: key -> escape code, fg = foreground, bg = background
*
* The keys can be used in between <> in a log & template.
*/
export const ESCAPE_CODE_LIST = {
// Formatting
"/r": "0",
"bold": "1",
"italic": "3",
"underline": "4",
"inverse": "7",
"hidden": "8",
"strikethrough": "9",
// Standard Colors
"sfg-black": "30",
"sfg-red": "31",
"sfg-green": "32",
"sfg-yellow": "33",
"sfg-blue": "34",
"sfg-magenta": "35",
"sfg-cyan": "36",
"sfg-white": "37",
"sbg-black": "40",
"sbg-red": "41",
"sbg-green": "42",
"sbg-yellow": "43",
"sbg-blue": "44",
"sbg-magenta": "45",
"sbg-cyan": "46",
"sbg-white": "47",
"sfg-bright-black": "90",
"sfg-bright-red": "91",
"sfg-bright-green": "92",
"sfg-bright-yellow": "93",
"sfg-bright-blue": "94",
"sfg-bright-magenta": "95",
"sfg-bright-cyan": "96",
"sfg-bright-white": "97",
"sbg-bright-black": "100",
"sbg-bright-red": "101",
"sbg-bright-green": "102",
"sbg-bright-yellow": "103",
"sbg-bright-blue": "104",
"sbg-bright-magenta": "105",
"sbg-bright-cyan": "106",
"sbg-bright-white": "107",
// Pastel colors
"pfg-black": "38;2;29;28;26",
"pbg-black": "48;2;29;28;26",
"pfg-red": "38;2;255;105;97",
"pbg-red": "48;2;255;105;97",
"pfg-green": "38;2;119;221;119",
"pbg-green": "48;2;119;221;119",
"pfg-yellow": "38;2;253;253;150",
"pbg-yellow": "48;2;253;253;150",
"pfg-blue": "38;2;162;191;254",
"pbg-blue": "48;2;162;191;254",
"pfg-magenta": "38;2;244;154;194",
"pbg-magenta": "48;2;244;154;194",
"pfg-cyan": "38;2;164;216;216",
"pbg-cyan": "48;2;164;216;216",
"pfg-white": "38;2;250;248;246",
"pbg-white": "48;2;250;248;246",
// Custom colors
"fg-maroon": "38;2;128;0;0",
"bg-maroon": "48;2;128;0;0",
"fg-dark-red": "38;2;139;0;0",
"bg-dark-red": "48;2;139;0;0",
"fg-brown": "38;2;165;42;42",
"bg-brown": "48;2;165;42;42",
"fg-firebrick": "38;2;178;34;34",
"bg-firebrick": "48;2;178;34;34",
"fg-crimson": "38;2;220;20;60",
"bg-crimson": "48;2;220;20;60",
"fg-red": "38;2;255;0;0",
"bg-red": "48;2;255;0;0",
"fg-tomato": "38;2;255;99;71",
"bg-tomato": "48;2;255;99;71",
"fg-coral": "38;2;255;127;80",
"bg-coral": "48;2;255;127;80",
"fg-indian-red": "38;2;205;92;92",
"bg-indian-red": "48;2;205;92;92",
"fg-light-coral": "38;2;240;128;128",
"bg-light-coral": "48;2;240;128;128",
"fg-dark-salmon": "38;2;233;150;122",
"bg-dark-salmon": "48;2;233;150;122",
"fg-salmon": "38;2;250;128;114",
"bg-salmon": "48;2;250;128;114",
"fg-light-salmon": "38;2;255;160;122",
"bg-light-salmon": "48;2;255;160;122",
"fg-orange-red": "38;2;255;69;0",
"bg-orange-red": "48;2;255;69;0",
"fg-dark-orange": "38;2;255;140;0",
"bg-dark-orange": "48;2;255;140;0",
"fg-orange": "38;2;255;165;0",
"bg-orange": "48;2;255;165;0",
"fg-gold": "38;2;255;215;0",
"bg-gold": "48;2;255;215;0",
"fg-dark-golden-rod": "38;2;184;134;11",
"bg-dark-golden-rod": "48;2;184;134;11",
"fg-golden-rod": "38;2;218;165;32",
"bg-golden-rod": "48;2;218;165;32",
"fg-pale-golden-rod": "38;2;238;232;170",
"bg-pale-golden-rod": "48;2;238;232;170",
"fg-dark-khaki": "38;2;189;183;107",
"bg-dark-khaki": "48;2;189;183;107",
"fg-khaki": "38;2;240;230;140",
"bg-khaki": "48;2;240;230;140",
"fg-olive": "38;2;128;128;0",
"bg-olive": "48;2;128;128;0",
"fg-yellow": "38;2;255;255;0",
"bg-yellow": "48;2;255;255;0",
"fg-yellow-green": "38;2;154;205;50",
"bg-yellow-green": "48;2;154;205;50",
"fg-dark-olive-green": "38;2;85;107;47",
"bg-dark-olive-green": "48;2;85;107;47",
"fg-olive-drab": "38;2;107;142;35",
"bg-olive-drab": "48;2;107;142;35",
"fg-lawn-green": "38;2;124;252;0",
"bg-lawn-green": "48;2;124;252;0",
"fg-chartreuse": "38;2;127;255;0",
"bg-chartreuse": "48;2;127;255;0",
"fg-green-yellow": "38;2;173;255;47",
"bg-green-yellow": "48;2;173;255;47",
"fg-dark-green": "38;2;0;100;0",
"bg-dark-green": "48;2;0;100;0",
"fg-green": "38;2;0;128;0",
"bg-green": "48;2;0;128;0",
"fg-forest-green": "38;2;34;139;34",
"bg-forest-green": "48;2;34;139;34",
"fg-lime": "38;2;0;255;0",
"bg-lime": "48;2;0;255;0",
"fg-lime-green": "38;2;50;205;50",
"bg-lime-green": "48;2;50;205;50",
"fg-light-green": "38;2;144;238;144",
"bg-light-green": "48;2;144;238;144",
"fg-pale-green": "38;2;152;251;152",
"bg-pale-green": "48;2;152;251;152",
"fg-dark-sea-green": "38;2;143;188;143",
"bg-dark-sea-green": "48;2;143;188;143",
"fg-medium-spring-green": "38;2;0;250;154",
"bg-medium-spring-green": "48;2;0;250;154",
"fg-spring-green": "38;2;0;255;127",
"bg-spring-green": "48;2;0;255;127",
"fg-sea-green": "38;2;46;139;87",
"bg-sea-green": "48;2;46;139;87",
"fg-medium-aqua-marine": "38;2;102;205;170",
"bg-medium-aqua-marine": "48;2;102;205;170",
"fg-medium-sea-green": "38;2;60;179;113",
"bg-medium-sea-green": "48;2;60;179;113",
"fg-light-sea-green": "38;2;32;178;170",
"bg-light-sea-green": "48;2;32;178;170",
"fg-dark-slate-gray": "38;2;47;79;79",
"bg-dark-slate-gray": "48;2;47;79;79",
"fg-teal": "38;2;0;128;128",
"bg-teal": "48;2;0;128;128",
"fg-dark-cyan": "38;2;0;139;139",
"bg-dark-cyan": "48;2;0;139;139",
"fg-aqua": "38;2;0;255;255",
"bg-aqua": "48;2;0;255;255",
"fg-cyan": "38;2;0;255;255",
"bg-cyan": "48;2;0;255;255",
"fg-light-cyan": "38;2;224;255;255",
"bg-light-cyan": "48;2;224;255;255",
"fg-dark-turquoise": "38;2;0;206;209",
"bg-dark-turquoise": "48;2;0;206;209",
"fg-turquoise": "38;2;64;224;208",
"bg-turquoise": "48;2;64;224;208",
"fg-medium-turquoise": "38;2;72;209;204",
"bg-medium-turquoise": "48;2;72;209;204",
"fg-pale-turquoise": "38;2;175;238;238",
"bg-pale-turquoise": "48;2;175;238;238",
"fg-aqua-marine": "38;2;127;255;212",
"bg-aqua-marine": "48;2;127;255;212",
"fg-powder-blue": "38;2;176;224;230",
"bg-powder-blue": "48;2;176;224;230",
"fg-cadet-blue": "38;2;95;158;160",
"bg-cadet-blue": "48;2;95;158;160",
"fg-steel-blue": "38;2;70;130;180",
"bg-steel-blue": "48;2;70;130;180",
"fg-corn-flower-blue": "38;2;100;149;237",
"bg-corn-flower-blue": "48;2;100;149;237",
"fg-deep-sky-blue": "38;2;0;191;255",
"bg-deep-sky-blue": "48;2;0;191;255",
"fg-dodger-blue": "38;2;30;144;255",
"bg-dodger-blue": "48;2;30;144;255",
"fg-light-blue": "38;2;173;216;230",
"bg-light-blue": "48;2;173;216;230",
"fg-sky-blue": "38;2;135;206;235",
"bg-sky-blue": "48;2;135;206;235",
"fg-light-sky-blue": "38;2;135;206;250",
"bg-light-sky-blue": "48;2;135;206;250",
"fg-midnight-blue": "38;2;25;25;112",
"bg-midnight-blue": "48;2;25;25;112",
"fg-navy": "38;2;0;0;128",
"bg-navy": "48;2;0;0;128",
"fg-dark-blue": "38;2;0;0;139",
"bg-dark-blue": "48;2;0;0;139",
"fg-medium-blue": "38;2;0;0;205",
"bg-medium-blue": "48;2;0;0;205",
"fg-blue": "38;2;0;0;255",
"bg-blue": "48;2;0;0;255",
"fg-royal-blue": "38;2;65;105;225",
"bg-royal-blue": "48;2;65;105;225",
"fg-blue-violet": "38;2;138;43;226",
"bg-blue-violet": "48;2;138;43;226",
"fg-indigo": "38;2;75;0;130",
"bg-indigo": "48;2;75;0;130",
"fg-dark-slate-blue": "38;2;72;61;139",
"bg-dark-slate-blue": "48;2;72;61;139",
"fg-slate-blue": "38;2;106;90;205",
"bg-slate-blue": "48;2;106;90;205",
"fg-medium-slate-blue": "38;2;123;104;238",
"bg-medium-slate-blue": "48;2;123;104;238",
"fg-medium-purple": "38;2;147;112;219",
"bg-medium-purple": "48;2;147;112;219",
"fg-dark-magenta": "38;2;139;0;139",
"bg-dark-magenta": "48;2;139;0;139",
"fg-dark-violet": "38;2;148;0;211",
"bg-dark-violet": "48;2;148;0;211",
"fg-dark-orchid": "38;2;153;50;204",
"bg-dark-orchid": "48;2;153;50;204",
"fg-medium-orchid": "38;2;186;85;211",
"bg-medium-orchid": "48;2;186;85;211",
"fg-purple": "38;2;128;0;128",
"bg-purple": "48;2;128;0;128",
"fg-thistle": "38;2;216;191;216",
"bg-thistle": "48;2;216;191;216",
"fg-plum": "38;2;221;160;221",
"bg-plum": "48;2;221;160;221",
"fg-violet": "38;2;238;130;238",
"bg-violet": "48;2;238;130;238",
"fg-magenta-/-fuchsia": "38;2;255;0;255",
"bg-magenta-/-fuchsia": "48;2;255;0;255",
"fg-orchid": "38;2;218;112;214",
"bg-orchid": "48;2;218;112;214",
"fg-medium-violet-red": "38;2;199;21;133",
"bg-medium-violet-red": "48;2;199;21;133",
"fg-pale-violet-red": "38;2;219;112;147",
"bg-pale-violet-red": "48;2;219;112;147",
"fg-deep-pink": "38;2;255;20;147",
"bg-deep-pink": "48;2;255;20;147",
"fg-hot-pink": "38;2;255;105;180",
"bg-hot-pink": "48;2;255;105;180",
"fg-light-pink": "38;2;255;182;193",
"bg-light-pink": "48;2;255;182;193",
"fg-pink": "38;2;255;192;203",
"bg-pink": "48;2;255;192;203",
"fg-antique-white": "38;2;250;235;215",
"bg-antique-white": "48;2;250;235;215",
"fg-beige": "38;2;245;245;220",
"bg-beige": "48;2;245;245;220",
"fg-bisque": "38;2;255;228;196",
"bg-bisque": "48;2;255;228;196",
"fg-blanched-almond": "38;2;255;235;205",
"bg-blanched-almond": "48;2;255;235;205",
"fg-wheat": "38;2;245;222;179",
"bg-wheat": "48;2;245;222;179",
"fg-corn-silk": "38;2;255;248;220",
"bg-corn-silk": "48;2;255;248;220",
"fg-lemon-chiffon": "38;2;255;250;205",
"bg-lemon-chiffon": "48;2;255;250;205",
"fg-light-golden-rod-yellow": "38;2;250;250;210",
"bg-light-golden-rod-yellow": "48;2;250;250;210",
"fg-light-yellow": "38;2;255;255;224",
"bg-light-yellow": "48;2;255;255;224",
"fg-saddle-brown": "38;2;139;69;19",
"bg-saddle-brown": "48;2;139;69;19",
"fg-sienna": "38;2;160;82;45",
"bg-sienna": "48;2;160;82;45",
"fg-chocolate": "38;2;210;105;30",
"bg-chocolate": "48;2;210;105;30",
"fg-peru": "38;2;205;133;63",
"bg-peru": "48;2;205;133;63",
"fg-sandy-brown": "38;2;244;164;96",
"bg-sandy-brown": "48;2;244;164;96",
"fg-burly-wood": "38;2;222;184;135",
"bg-burly-wood": "48;2;222;184;135",
"fg-tan": "38;2;210;180;140",
"bg-tan": "48;2;210;180;140",
"fg-rosy-brown": "38;2;188;143;143",
"bg-rosy-brown": "48;2;188;143;143",
"fg-moccasin": "38;2;255;228;181",
"bg-moccasin": "48;2;255;228;181",
"fg-navajo-white": "38;2;255;222;173",
"bg-navajo-white": "48;2;255;222;173",
"fg-peach-puff": "38;2;255;218;185",
"bg-peach-puff": "48;2;255;218;185",
"fg-misty-rose": "38;2;255;228;225",
"bg-misty-rose": "48;2;255;228;225",
"fg-lavender-blush": "38;2;255;240;245",
"bg-lavender-blush": "48;2;255;240;245",
"fg-linen": "38;2;250;240;230",
"bg-linen": "48;2;250;240;230",
"fg-old-lace": "38;2;253;245;230",
"bg-old-lace": "48;2;253;245;230",
"fg-papaya-whip": "38;2;255;239;213",
"bg-papaya-whip": "48;2;255;239;213",
"fg-sea-shell": "38;2;255;245;238",
"bg-sea-shell": "48;2;255;245;238",
"fg-mint-cream": "38;2;245;255;250",
"bg-mint-cream": "48;2;245;255;250",
"fg-slate-gray": "38;2;112;128;144",
"bg-slate-gray": "48;2;112;128;144",
"fg-light-slate-gray": "38;2;119;136;153",
"bg-light-slate-gray": "48;2;119;136;153",
"fg-light-steel-blue": "38;2;176;196;222",
"bg-light-steel-blue": "48;2;176;196;222",
"fg-lavender": "38;2;230;230;250",
"bg-lavender": "48;2;230;230;250",
"fg-floral-white": "38;2;255;250;240",
"bg-floral-white": "48;2;255;250;240",
"fg-alice-blue": "38;2;240;248;255",
"bg-alice-blue": "48;2;240;248;255",
"fg-ghost-white": "38;2;248;248;255",
"bg-ghost-white": "48;2;248;248;255",
"fg-honeydew": "38;2;240;255;240",
"bg-honeydew": "48;2;240;255;240",
"fg-ivory": "38;2;255;255;240",
"bg-ivory": "48;2;255;255;240",
"fg-azure": "38;2;240;255;255",
"bg-azure": "48;2;240;255;255",
"fg-snow": "38;2;255;250;250",
"bg-snow": "48;2;255;250;250",
"fg-black": "38;2;0;0;0",
"bg-black": "48;2;0;0;0",
"fg-dim-gray-/-dim-grey": "38;2;105;105;105",
"bg-dim-gray-/-dim-grey": "48;2;105;105;105",
"fg-gray-/-grey": "38;2;128;128;128",
"bg-gray-/-grey": "48;2;128;128;128",
"fg-dark-gray-/-dark-grey": "38;2;169;169;169",
"bg-dark-gray-/-dark-grey": "48;2;169;169;169",
"fg-silver": "38;2;192;192;192",
"bg-silver": "48;2;192;192;192",
"fg-light-gray-/-light-grey": "38;2;211;211;211",
"bg-light-gray-/-light-grey": "48;2;211;211;211",
"fg-gainsboro": "38;2;220;220;220",
"bg-gainsboro": "48;2;220;220;220",
"fg-white-smoke": "38;2;245;245;245",
"bg-white-smoke": "48;2;245;245;245",
"fg-white": "38;2;255;255;255",
"bg-white": "48;2;255;255;255"
};