-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.theme.zsh
628 lines (626 loc) · 18.7 KB
/
.theme.zsh
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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
#!/usr/bin/env bash
export col_bg='#011627'
export col_fg='#d6deeb'
export col_black='#536372'
export col_red='#ef5350'
export col_green='#22da6e'
export col_yellow='#ecc48d'
export col_blue='#82aaff'
export col_magenta='#c792ea'
export col_cyan='#7fdbca'
export col_white='#ffffff'
export col_orange='#f78c6c'
export col_lime='#9ccc65'
export col_yellow_alt='#e2b93d'
export col_bg_dark='#00121f'
export col_bg_light='#2c3043'
export col_bg_blue='#5f7e97'
export col_bg_scroll='#084d81'
export col_fg5='#0b2030'
export col_fg5fg='#d6deeb'
export col_fg10='#162a3a'
export col_fg10fg='#d6deeb'
export col_fg15='#203444'
export col_fg15fg='#d6deeb'
export col_fg20='#2b3e4e'
export col_fg20fg='#d6deeb'
export col_fg25='#364858'
export col_fg25fg='#d6deeb'
export col_fg30='#405261'
export col_fg30fg='#d6deeb'
export col_fg35='#4b5c6b'
export col_fg35fg='#d6deeb'
export col_fg40='#566675'
export col_fg40fg='#d6deeb'
export col_fg45='#60707f'
export col_fg45fg='#d6deeb'
export col_fg50='#6b7a89'
export col_fg50fg='#d6deeb'
export col_fg55='#768492'
export col_fg55fg='#d6deeb'
export col_fg60='#808e9c'
export col_fg60fg='#d6deeb'
export col_fg65='#8b98a6'
export col_fg65fg='#d6deeb'
export col_fg70='#96a2b0'
export col_fg70fg='#d6deeb'
export col_fg75='#a0acba'
export col_fg75fg='#d6deeb'
export col_fg80='#abb6c3'
export col_fg80fg='#d6deeb'
export col_fg85='#b6c0cd'
export col_fg85fg='#d6deeb'
export col_fg90='#c0cad7'
export col_fg90fg='#d6deeb'
export col_fg95='#cbd4e1'
export col_fg95fg='#d6deeb'
export col_black5='#05192a'
export col_black5fg='#cfd7e4'
export col_black10='#091d2e'
export col_black10fg='#c8d1de'
export col_black15='#0d2132'
export col_black15fg='#c2cbd8'
export col_black20='#112536'
export col_black20fg='#bbc5d2'
export col_black25='#152939'
export col_black25fg='#b5bfcc'
export col_black30='#192d3d'
export col_black30fg='#aeb9c6'
export col_black35='#1d3041'
export col_black35fg='#a8b2c0'
export col_black40='#213445'
export col_black40fg='#a1acba'
export col_black45='#253848'
export col_black45fg='#9ba6b4'
export col_black50='#2a3c4c'
export col_black50fg='#94a0ae'
export col_black55='#2e4050'
export col_black55fg='#8d9aa8'
export col_black60='#324454'
export col_black60fg='#8794a2'
export col_black65='#364857'
export col_black65fg='#808e9c'
export col_black70='#3a4b5b'
export col_black70fg='#7a8796'
export col_black75='#3e4f5f'
export col_black75fg='#738190'
export col_black80='#425363'
export col_black80fg='#6d7b8a'
export col_black85='#465766'
export col_black85fg='#667584'
export col_black90='#4a5b6a'
export col_black90fg='#606f7e'
export col_black95='#4e5f6e'
export col_black95fg='#596978'
export col_red5='#0c1929'
export col_red5fg='#d7d7e3'
export col_red10='#181c2b'
export col_red10fg='#d8d0db'
export col_red15='#241f2d'
export col_red15fg='#d9c9d3'
export col_red20='#30222f'
export col_red20fg='#dbc2cc'
export col_red25='#3c2531'
export col_red25fg='#dcbbc4'
export col_red30='#482833'
export col_red30fg='#ddb4bc'
export col_red35='#542b35'
export col_red35fg='#deadb4'
export col_red40='#602e37'
export col_red40fg='#e0a6ad'
export col_red45='#6c3139'
export col_red45fg='#e19fa5'
export col_red50='#78343b'
export col_red50fg='#e2989d'
export col_red55='#83373d'
export col_red55fg='#e39195'
export col_red60='#8f3a3f'
export col_red60fg='#e58a8e'
export col_red65='#9b3d41'
export col_red65fg='#e68386'
export col_red70='#a74043'
export col_red70fg='#e77c7e'
export col_red75='#b34345'
export col_red75fg='#e87576'
export col_red80='#bf4647'
export col_red80fg='#ea6e6f'
export col_red85='#cb4949'
export col_red85fg='#eb6767'
export col_red90='#d74c4b'
export col_red90fg='#ec605f'
export col_red95='#e34f4d'
export col_red95fg='#ed5957'
export col_green5='#021f2a'
export col_green5fg='#cddde4'
export col_green10='#04292e'
export col_green10fg='#c4ddde'
export col_green15='#053331'
export col_green15fg='#bbddd8'
export col_green20='#073d35'
export col_green20fg='#b2ddd2'
export col_green25='#094738'
export col_green25fg='#a9ddcb'
export col_green30='#0a503c'
export col_green30fg='#a0dcc5'
export col_green35='#0c5a3f'
export col_green35fg='#97dcbf'
export col_green40='#0e6443'
export col_green40fg='#8edcb9'
export col_green45='#0f6e46'
export col_green45fg='#85dcb2'
export col_green50='#11784a'
export col_green50fg='#7cdcac'
export col_green55='#13814e'
export col_green55fg='#72dba6'
export col_green60='#148b51'
export col_green60fg='#6adba0'
export col_green65='#169555'
export col_green65fg='#61db99'
export col_green70='#189f58'
export col_green70fg='#58db93'
export col_green75='#19a95c'
export col_green75fg='#4fdb8d'
export col_green80='#1bb25f'
export col_green80fg='#46da87'
export col_green85='#1dbc63'
export col_green85fg='#3dda80'
export col_green90='#1ec666'
export col_green90fg='#34da7a'
export col_green95='#20d06a'
export col_green95fg='#2bda74'
export col_yellow5='#0c1e2c'
export col_yellow5fg='#d7dce6'
export col_yellow10='#182731'
export col_yellow10fg='#d8dbe1'
export col_yellow15='#243036'
export col_yellow15fg='#d9dadc'
export col_yellow20='#30383b'
export col_yellow20fg='#dad8d8'
export col_yellow25='#3b4140'
export col_yellow25fg='#dbd7d3'
export col_yellow30='#474a45'
export col_yellow30fg='#dcd6ce'
export col_yellow35='#53524a'
export col_yellow35fg='#ddd4ca'
export col_yellow40='#5f5b4f'
export col_yellow40fg='#ded3c5'
export col_yellow45='#6a6454'
export col_yellow45fg='#dfd2c0'
export col_yellow50='#766d5a'
export col_yellow50fg='#e1d1bc'
export col_yellow55='#82755f'
export col_yellow55fg='#e2cfb7'
export col_yellow60='#8e7e64'
export col_yellow60fg='#e3ceb2'
export col_yellow65='#998769'
export col_yellow65fg='#e4cdad'
export col_yellow70='#a58f6e'
export col_yellow70fg='#e5cba9'
export col_yellow75='#b19873'
export col_yellow75fg='#e6caa4'
export col_yellow80='#bda178'
export col_yellow80fg='#e7c99f'
export col_yellow85='#c8a97d'
export col_yellow85fg='#e8c79b'
export col_yellow90='#d4b282'
export col_yellow90fg='#e9c696'
export col_yellow95='#e0bb87'
export col_yellow95fg='#eac591'
export col_blue5='#071d31'
export col_blue5fg='#d1dbec'
export col_blue10='#0d243c'
export col_blue10fg='#cdd8ed'
export col_blue15='#142c47'
export col_blue15fg='#c9d6ee'
export col_blue20='#1a3352'
export col_blue20fg='#c5d3ef'
export col_blue25='#213b5d'
export col_blue25fg='#c1d1f0'
export col_blue30='#274267'
export col_blue30fg='#bccef1'
export col_blue35='#2e4972'
export col_blue35fg='#b8cbf2'
export col_blue40='#34517d'
export col_blue40fg='#b4c9f3'
export col_blue45='#3b5888'
export col_blue45fg='#b0c6f4'
export col_blue50='#416093'
export col_blue50fg='#acc4f5'
export col_blue55='#47679d'
export col_blue55fg='#a7c1f6'
export col_blue60='#4e6ea8'
export col_blue60fg='#a3bef7'
export col_blue65='#5476b3'
export col_blue65fg='#9fbcf8'
export col_blue70='#5b7dbe'
export col_blue70fg='#9bb9f9'
export col_blue75='#6185c9'
export col_blue75fg='#97b7fa'
export col_blue80='#688cd3'
export col_blue80fg='#92b4fb'
export col_blue85='#6e93de'
export col_blue85fg='#8eb1fc'
export col_blue90='#759be9'
export col_blue90fg='#8aaffd'
export col_blue95='#7ba2f4'
export col_blue95fg='#86acfe'
export col_magenta5='#0a1c30'
export col_magenta5fg='#d5daea'
export col_magenta10='#14223a'
export col_magenta10fg='#d4d6ea'
export col_magenta15='#1e2844'
export col_magenta15fg='#d3d2ea'
export col_magenta20='#282e4e'
export col_magenta20fg='#d3ceea'
export col_magenta25='#323557'
export col_magenta25fg='#d2cbea'
export col_magenta30='#3c3b61'
export col_magenta30fg='#d1c7ea'
export col_magenta35='#46416b'
export col_magenta35fg='#d0c3ea'
export col_magenta40='#504775'
export col_magenta40fg='#d0bfea'
export col_magenta45='#5a4d7e'
export col_magenta45fg='#cfbbea'
export col_magenta50='#645488'
export col_magenta50fg='#ceb8ea'
export col_magenta55='#6d5a92'
export col_magenta55fg='#cdb4ea'
export col_magenta60='#77609c'
export col_magenta60fg='#cdb0ea'
export col_magenta65='#8166a5'
export col_magenta65fg='#ccacea'
export col_magenta70='#8b6caf'
export col_magenta70fg='#cba8ea'
export col_magenta75='#9573b9'
export col_magenta75fg='#caa5ea'
export col_magenta80='#9f79c3'
export col_magenta80fg='#caa1ea'
export col_magenta85='#a97fcc'
export col_magenta85fg='#c99dea'
export col_magenta90='#b385d6'
export col_magenta90fg='#c899ea'
export col_magenta95='#bd8be0'
export col_magenta95fg='#c795ea'
export col_cyan5='#071f2f'
export col_cyan5fg='#d1dde9'
export col_cyan10='#0d2937'
export col_cyan10fg='#cddde7'
export col_cyan15='#13333f'
export col_cyan15fg='#c8dde6'
export col_cyan20='#1a3d47'
export col_cyan20fg='#c4dde4'
export col_cyan25='#20474f'
export col_cyan25fg='#c0dde2'
export col_cyan30='#265157'
export col_cyan30fg='#bbdde1'
export col_cyan35='#2d5a60'
export col_cyan35fg='#b7dcdf'
export col_cyan40='#336468'
export col_cyan40fg='#b3dcdd'
export col_cyan45='#396e70'
export col_cyan45fg='#aedcdc'
export col_cyan50='#407878'
export col_cyan50fg='#aadcda'
export col_cyan55='#468280'
export col_cyan55fg='#a6dcd8'
export col_cyan60='#4c8c88'
export col_cyan60fg='#a1dcd7'
export col_cyan65='#529690'
export col_cyan65fg='#9ddcd5'
export col_cyan70='#599f99'
export col_cyan70fg='#99dbd3'
export col_cyan75='#5fa9a1'
export col_cyan75fg='#94dbd2'
export col_cyan80='#65b3a9'
export col_cyan80fg='#90dbd0'
export col_cyan85='#6cbdb1'
export col_cyan85fg='#8cdbce'
export col_cyan90='#72c7b9'
export col_cyan90fg='#87dbcd'
export col_cyan95='#78d1c1'
export col_cyan95fg='#83dbcb'
export col_white5='#0d2131'
export col_white5fg='#d8dfec'
export col_white10='#1a2d3c'
export col_white10fg='#dae1ed'
export col_white15='#273847'
export col_white15fg='#dce2ee'
export col_white20='#334452'
export col_white20fg='#dee4ef'
export col_white25='#40505d'
export col_white25fg='#e0e6f0'
export col_white30='#4d5b67'
export col_white30fg='#e2e7f1'
export col_white35='#596772'
export col_white35fg='#e4e9f2'
export col_white40='#66737d'
export col_white40fg='#e6ebf3'
export col_white45='#737e88'
export col_white45fg='#e8ecf4'
export col_white50='#808a93'
export col_white50fg='#eaeef5'
export col_white55='#8c969d'
export col_white55fg='#ecf0f6'
export col_white60='#99a1a8'
export col_white60fg='#eef1f7'
export col_white65='#a6adb3'
export col_white65fg='#f0f3f8'
export col_white70='#b2b9be'
export col_white70fg='#f2f5f9'
export col_white75='#bfc4c9'
export col_white75fg='#f4f6fa'
export col_white80='#ccd0d3'
export col_white80fg='#f6f8fb'
export col_white85='#d8dcde'
export col_white85fg='#f8fafc'
export col_white90='#e5e7e9'
export col_white90fg='#fafbfd'
export col_white95='#f2f3f4'
export col_white95fg='#fcfdfe'
export col_orange5='#0d1b2a'
export col_orange5fg='#d7d9e4'
export col_orange10='#19212d'
export col_orange10fg='#d9d5de'
export col_orange15='#252731'
export col_orange15fg='#dad1d7'
export col_orange20='#322d34'
export col_orange20fg='#dccdd1'
export col_orange25='#3e3338'
export col_orange25fg='#dec9cb'
export col_orange30='#4a393b'
export col_orange30fg='#dfc5c4'
export col_orange35='#573f3f'
export col_orange35fg='#e1c1be'
export col_orange40='#634542'
export col_orange40fg='#e3bdb8'
export col_orange45='#6f4b46'
export col_orange45fg='#e4b9b1'
export col_orange50='#7c5149'
export col_orange50fg='#e6b5ab'
export col_orange55='#88564c'
export col_orange55fg='#e8b0a5'
export col_orange60='#945c50'
export col_orange60fg='#e9ac9e'
export col_orange65='#a06253'
export col_orange65fg='#eba898'
export col_orange70='#ad6857'
export col_orange70fg='#eda492'
export col_orange75='#b96e5a'
export col_orange75fg='#eea08b'
export col_orange80='#c5745e'
export col_orange80fg='#f09c85'
export col_orange85='#d27a61'
export col_orange85fg='#f2987f'
export col_orange90='#de8065'
export col_orange90fg='#f39478'
export col_orange95='#ea8668'
export col_orange95fg='#f59072'
export col_lime5='#081f2a'
export col_lime5fg='#d3dde4'
export col_lime10='#10282d'
export col_lime10fg='#d0dcdd'
export col_lime15='#183130'
export col_lime15fg='#cddbd6'
export col_lime20='#203a33'
export col_lime20fg='#cadad0'
export col_lime25='#274336'
export col_lime25fg='#c7d9c9'
export col_lime30='#2f4c39'
export col_lime30fg='#c4d8c2'
export col_lime35='#37553c'
export col_lime35fg='#c1d7bc'
export col_lime40='#3f5e3f'
export col_lime40fg='#bed6b5'
export col_lime45='#466742'
export col_lime45fg='#bbd5ae'
export col_lime50='#4e7146'
export col_lime50fg='#b9d5a8'
export col_lime55='#567a49'
export col_lime55fg='#b6d4a1'
export col_lime60='#5e834c'
export col_lime60fg='#b3d39a'
export col_lime65='#658c4f'
export col_lime65fg='#b0d293'
export col_lime70='#6d9552'
export col_lime70fg='#add18d'
export col_lime75='#759e55'
export col_lime75fg='#aad086'
export col_lime80='#7da758'
export col_lime80fg='#a7cf7f'
export col_lime85='#84b05b'
export col_lime85fg='#a4ce79'
export col_lime90='#8cb95e'
export col_lime90fg='#a1cd72'
export col_lime95='#94c261'
export col_lime95fg='#9ecc6b'
export col_yellow_alt5='#0c1e28'
export col_yellow_alt5fg='#d6dce2'
export col_yellow_alt10='#172629'
export col_yellow_alt10fg='#d7dad9'
export col_yellow_alt15='#222e2a'
export col_yellow_alt15fg='#d7d8d0'
export col_yellow_alt20='#2e362b'
export col_yellow_alt20fg='#d8d6c8'
export col_yellow_alt25='#393e2c'
export col_yellow_alt25fg='#d9d4bf'
export col_yellow_alt30='#44462d'
export col_yellow_alt30fg='#d9d2b6'
export col_yellow_alt35='#4f4f2e'
export col_yellow_alt35fg='#dad1ae'
export col_yellow_alt40='#5b572f'
export col_yellow_alt40fg='#dacfa5'
export col_yellow_alt45='#665f30'
export col_yellow_alt45fg='#dbcd9c'
export col_yellow_alt50='#716732'
export col_yellow_alt50fg='#dccb94'
export col_yellow_alt55='#7c6f33'
export col_yellow_alt55fg='#dcc98b'
export col_yellow_alt60='#887734'
export col_yellow_alt60fg='#ddc782'
export col_yellow_alt65='#937f35'
export col_yellow_alt65fg='#ddc579'
export col_yellow_alt70='#9e8836'
export col_yellow_alt70fg='#dec471'
export col_yellow_alt75='#a99037'
export col_yellow_alt75fg='#dfc268'
export col_yellow_alt80='#b59838'
export col_yellow_alt80fg='#dfc05f'
export col_yellow_alt85='#c0a039'
export col_yellow_alt85fg='#e0be57'
export col_yellow_alt90='#cba83a'
export col_yellow_alt90fg='#e0bc4e'
export col_yellow_alt95='#d6b03b'
export col_yellow_alt95fg='#e1ba45'
export col_bg_dark5='#001526'
export col_bg_dark5fg='#cbd3e0'
export col_bg_dark10='#001526'
export col_bg_dark10fg='#c0c9d6'
export col_bg_dark15='#001525'
export col_bg_dark15fg='#b5bfcc'
export col_bg_dark20='#001525'
export col_bg_dark20fg='#abb5c2'
export col_bg_dark25='#001525'
export col_bg_dark25fg='#a0abb8'
export col_bg_dark30='#001424'
export col_bg_dark30fg='#95a0ad'
export col_bg_dark35='#001424'
export col_bg_dark35fg='#8b96a3'
export col_bg_dark40='#001423'
export col_bg_dark40fg='#808c99'
export col_bg_dark45='#001423'
export col_bg_dark45fg='#75828f'
export col_bg_dark50='#001423'
export col_bg_dark50fg='#6b7885'
export col_bg_dark55='#001322'
export col_bg_dark55fg='#606d7a'
export col_bg_dark60='#001322'
export col_bg_dark60fg='#556370'
export col_bg_dark65='#001321'
export col_bg_dark65fg='#4a5966'
export col_bg_dark70='#001321'
export col_bg_dark70fg='#404f5c'
export col_bg_dark75='#001321'
export col_bg_dark75fg='#354552'
export col_bg_dark80='#001220'
export col_bg_dark80fg='#2a3a47'
export col_bg_dark85='#001220'
export col_bg_dark85fg='#20303d'
export col_bg_dark90='#00121f'
export col_bg_dark90fg='#152633'
export col_bg_dark95='#00121f'
export col_bg_dark95fg='#0a1c29'
export col_bg_light5='#031728'
export col_bg_light5fg='#cdd5e2'
export col_bg_light10='#051829'
export col_bg_light10fg='#c5ccda'
export col_bg_light15='#07192b'
export col_bg_light15fg='#bcc3d1'
export col_bg_light20='#091b2c'
export col_bg_light20fg='#b4bbc9'
export col_bg_light25='#0b1c2e'
export col_bg_light25fg='#abb2c1'
export col_bg_light30='#0d1d2f'
export col_bg_light30fg='#a3a9b8'
export col_bg_light35='#101f30'
export col_bg_light35fg='#9aa1b0'
export col_bg_light40='#122032'
export col_bg_light40fg='#9298a7'
export col_bg_light45='#142133'
export col_bg_light45fg='#898f9f'
export col_bg_light50='#162335'
export col_bg_light50fg='#818797'
export col_bg_light55='#182436'
export col_bg_light55fg='#787e8e'
export col_bg_light60='#1a2537'
export col_bg_light60fg='#707586'
export col_bg_light65='#1c2639'
export col_bg_light65fg='#676c7d'
export col_bg_light70='#1f283a'
export col_bg_light70fg='#5f6475'
export col_bg_light75='#21293c'
export col_bg_light75fg='#565b6d'
export col_bg_light80='#232a3d'
export col_bg_light80fg='#4e5264'
export col_bg_light85='#252c3e'
export col_bg_light85fg='#454a5c'
export col_bg_light90='#272d40'
export col_bg_light90fg='#3d4153'
export col_bg_light95='#292e41'
export col_bg_light95fg='#34384b'
export col_bg_blue5='#051b2c'
export col_bg_blue5fg='#d0d9e6'
export col_bg_blue10='#0a2032'
export col_bg_blue10fg='#cad4e2'
export col_bg_blue15='#0f2537'
export col_bg_blue15fg='#c4cfde'
export col_bg_blue20='#132a3d'
export col_bg_blue20fg='#becada'
export col_bg_blue25='#183043'
export col_bg_blue25fg='#b8c6d6'
export col_bg_blue30='#1d3548'
export col_bg_blue30fg='#b2c1d1'
export col_bg_blue35='#213a4e'
export col_bg_blue35fg='#acbccd'
export col_bg_blue40='#263f53'
export col_bg_blue40fg='#a6b7c9'
export col_bg_blue45='#2b4459'
export col_bg_blue45fg='#a0b2c5'
export col_bg_blue50='#304a5f'
export col_bg_blue50fg='#9aaec1'
export col_bg_blue55='#344f64'
export col_bg_blue55fg='#94a9bc'
export col_bg_blue60='#39546a'
export col_bg_blue60fg='#8ea4b8'
export col_bg_blue65='#3e596f'
export col_bg_blue65fg='#889fb4'
export col_bg_blue70='#425e75'
export col_bg_blue70fg='#829ab0'
export col_bg_blue75='#47647b'
export col_bg_blue75fg='#7c96ac'
export col_bg_blue80='#4c6980'
export col_bg_blue80fg='#7691a7'
export col_bg_blue85='#506e86'
export col_bg_blue85fg='#708ca3'
export col_bg_blue90='#55738b'
export col_bg_blue90fg='#6a879f'
export col_bg_blue95='#5a7891'
export col_bg_blue95fg='#64829b'
export col_bg_scroll5='#01182b'
export col_bg_scroll5fg='#cbd6e5'
export col_bg_scroll10='#011b30'
export col_bg_scroll10fg='#c1cfe0'
export col_bg_scroll15='#021e34'
export col_bg_scroll15fg='#b7c8db'
export col_bg_scroll20='#022139'
export col_bg_scroll20fg='#acc1d5'
export col_bg_scroll25='#02233d'
export col_bg_scroll25fg='#a2b9d0'
export col_bg_scroll30='#032642'
export col_bg_scroll30fg='#98b2cb'
export col_bg_scroll35='#032946'
export col_bg_scroll35fg='#8dabc5'
export col_bg_scroll40='#032c4b'
export col_bg_scroll40fg='#83a4c0'
export col_bg_scroll45='#042e4f'
export col_bg_scroll45fg='#799cbb'
export col_bg_scroll50='#043154'
export col_bg_scroll50fg='#6f95b6'
export col_bg_scroll55='#043458'
export col_bg_scroll55fg='#648eb0'
export col_bg_scroll60='#05375d'
export col_bg_scroll60fg='#5a87ab'
export col_bg_scroll65='#053961'
export col_bg_scroll65fg='#507fa6'
export col_bg_scroll70='#053c66'
export col_bg_scroll70fg='#4578a0'
export col_bg_scroll75='#063f6a'
export col_bg_scroll75fg='#3b719b'
export col_bg_scroll80='#06426f'
export col_bg_scroll80fg='#316a96'
export col_bg_scroll85='#064473'
export col_bg_scroll85fg='#266290'
export col_bg_scroll90='#074778'
export col_bg_scroll90fg='#1c5b8b'
export col_bg_scroll95='#074a7c'
export col_bg_scroll95fg='#125486'