shanep-class 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2563 @@
1
+ .asciinema-player-wrapper {
2
+ position: relative;
3
+ text-align: center;
4
+ outline: none;
5
+ }
6
+ .asciinema-player-wrapper .title-bar {
7
+ display: none;
8
+ top: -78px;
9
+ transition: top 0.15s linear;
10
+ position: absolute;
11
+ left: 0;
12
+ right: 0;
13
+ box-sizing: content-box;
14
+ font-size: 20px;
15
+ line-height: 1em;
16
+ padding: 15px;
17
+ font-family: sans-serif;
18
+ color: white;
19
+ background-color: rgba(0, 0, 0, 0.8);
20
+ }
21
+ .asciinema-player-wrapper .title-bar img {
22
+ vertical-align: middle;
23
+ height: 48px;
24
+ margin-right: 16px;
25
+ }
26
+ .asciinema-player-wrapper .title-bar a {
27
+ color: white;
28
+ text-decoration: underline;
29
+ }
30
+ .asciinema-player-wrapper .title-bar a:hover {
31
+ text-decoration: none;
32
+ }
33
+ .asciinema-player-wrapper:fullscreen {
34
+ background-color: #000;
35
+ width: 100%;
36
+ height: 100%;
37
+ display: -webkit-flex;
38
+ display: -ms-flexbox;
39
+ display: flex;
40
+ -webkit-justify-content: center;
41
+ justify-content: center;
42
+ -webkit-align-items: center;
43
+ align-items: center;
44
+ }
45
+ .asciinema-player-wrapper:fullscreen .asciinema-player {
46
+ position: static;
47
+ }
48
+ .asciinema-player-wrapper:fullscreen .title-bar {
49
+ display: initial;
50
+ }
51
+ .asciinema-player-wrapper:fullscreen.hud .title-bar {
52
+ top: 0;
53
+ }
54
+ .asciinema-player-wrapper:-webkit-full-screen {
55
+ background-color: #000;
56
+ width: 100%;
57
+ height: 100%;
58
+ display: -webkit-flex;
59
+ display: -ms-flexbox;
60
+ display: flex;
61
+ -webkit-justify-content: center;
62
+ justify-content: center;
63
+ -webkit-align-items: center;
64
+ align-items: center;
65
+ }
66
+ .asciinema-player-wrapper:-webkit-full-screen .asciinema-player {
67
+ position: static;
68
+ }
69
+ .asciinema-player-wrapper:-webkit-full-screen .title-bar {
70
+ display: initial;
71
+ }
72
+ .asciinema-player-wrapper:-webkit-full-screen.hud .title-bar {
73
+ top: 0;
74
+ }
75
+ .asciinema-player-wrapper:-moz-full-screen {
76
+ background-color: #000;
77
+ width: 100%;
78
+ height: 100%;
79
+ display: -webkit-flex;
80
+ display: -ms-flexbox;
81
+ display: flex;
82
+ -webkit-justify-content: center;
83
+ justify-content: center;
84
+ -webkit-align-items: center;
85
+ align-items: center;
86
+ }
87
+ .asciinema-player-wrapper:-moz-full-screen .asciinema-player {
88
+ position: static;
89
+ }
90
+ .asciinema-player-wrapper:-moz-full-screen .title-bar {
91
+ display: initial;
92
+ }
93
+ .asciinema-player-wrapper:-moz-full-screen.hud .title-bar {
94
+ top: 0;
95
+ }
96
+ .asciinema-player-wrapper:-ms-fullscreen {
97
+ background-color: #000;
98
+ width: 100%;
99
+ height: 100%;
100
+ display: -webkit-flex;
101
+ display: -ms-flexbox;
102
+ display: flex;
103
+ -webkit-justify-content: center;
104
+ justify-content: center;
105
+ -webkit-align-items: center;
106
+ align-items: center;
107
+ }
108
+ .asciinema-player-wrapper:-ms-fullscreen .asciinema-player {
109
+ position: static;
110
+ }
111
+ .asciinema-player-wrapper:-ms-fullscreen .title-bar {
112
+ display: initial;
113
+ }
114
+ .asciinema-player-wrapper:-ms-fullscreen.hud .title-bar {
115
+ top: 0;
116
+ }
117
+ .asciinema-player-wrapper .asciinema-player {
118
+ text-align: left;
119
+ display: inline-block;
120
+ padding: 0px;
121
+ position: relative;
122
+ box-sizing: content-box;
123
+ -moz-box-sizing: content-box;
124
+ -webkit-box-sizing: content-box;
125
+ overflow: hidden;
126
+ max-width: 100%;
127
+ }
128
+ .asciinema-terminal {
129
+ box-sizing: content-box;
130
+ -moz-box-sizing: content-box;
131
+ -webkit-box-sizing: content-box;
132
+ overflow: hidden;
133
+ padding: 0;
134
+ margin: 0px;
135
+ display: block;
136
+ white-space: pre;
137
+ border: 0;
138
+ word-wrap: normal;
139
+ word-break: normal;
140
+ border-radius: 0;
141
+ border-style: solid;
142
+ cursor: text;
143
+ border-width: 0.5em;
144
+ font-family: Consolas, Menlo, 'Bitstream Vera Sans Mono', monospace, 'Powerline Symbols';
145
+ line-height: 1.3333333333em;
146
+ }
147
+ .asciinema-terminal .line {
148
+ letter-spacing: normal;
149
+ overflow: hidden;
150
+ height: 1.3333333333em;
151
+ }
152
+ .asciinema-terminal .line span {
153
+ padding: 0;
154
+ display: inline-block;
155
+ height: 1.3333333333em;
156
+ }
157
+ .asciinema-terminal .line {
158
+ display: block;
159
+ width: 200%;
160
+ }
161
+ .asciinema-terminal .bright {
162
+ font-weight: bold;
163
+ }
164
+ .asciinema-terminal .underline {
165
+ text-decoration: underline;
166
+ }
167
+ .asciinema-terminal .italic {
168
+ font-style: italic;
169
+ }
170
+ .asciinema-terminal.font-small {
171
+ font-size: 12px;
172
+ }
173
+ .asciinema-terminal.font-medium {
174
+ font-size: 18px;
175
+ }
176
+ .asciinema-terminal.font-big {
177
+ font-size: 24px;
178
+ }
179
+ .asciinema-player .control-bar {
180
+ width: 100%;
181
+ height: 32px;
182
+ background: rgba(0, 0, 0, 0.8);
183
+ /* no gradient fallback */
184
+ background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, #000000 25%, #000000 100%);
185
+ /* FF3.6-15 */
186
+ background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, #000000 25%, #000000 100%);
187
+ /* Chrome10-25,Safari5.1-6 */
188
+ background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, #000000 25%, #000000 100%);
189
+ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
190
+ color: #bbbbbb;
191
+ box-sizing: content-box;
192
+ line-height: 1;
193
+ position: absolute;
194
+ bottom: -35px;
195
+ left: 0;
196
+ transition: bottom 0.15s linear;
197
+ }
198
+ .asciinema-player .control-bar * {
199
+ box-sizing: inherit;
200
+ font-size: 0;
201
+ }
202
+ .asciinema-player .control-bar svg.icon path {
203
+ fill: #bbbbbb;
204
+ }
205
+ .asciinema-player .control-bar .playback-button {
206
+ display: block;
207
+ float: left;
208
+ cursor: pointer;
209
+ height: 12px;
210
+ width: 12px;
211
+ padding: 10px;
212
+ }
213
+ .asciinema-player .control-bar .playback-button svg {
214
+ height: 12px;
215
+ width: 12px;
216
+ }
217
+ .asciinema-player .control-bar .timer {
218
+ display: block;
219
+ float: left;
220
+ width: 50px;
221
+ height: 100%;
222
+ text-align: center;
223
+ font-family: Helvetica, Arial, sans-serif;
224
+ font-size: 11px;
225
+ font-weight: bold;
226
+ line-height: 32px;
227
+ cursor: default;
228
+ }
229
+ .asciinema-player .control-bar .timer span {
230
+ display: inline-block;
231
+ font-size: inherit;
232
+ }
233
+ .asciinema-player .control-bar .timer .time-remaining {
234
+ display: none;
235
+ }
236
+ .asciinema-player .control-bar .timer:hover .time-elapsed {
237
+ display: none;
238
+ }
239
+ .asciinema-player .control-bar .timer:hover .time-remaining {
240
+ display: inline;
241
+ }
242
+ .asciinema-player .control-bar .progressbar {
243
+ display: block;
244
+ overflow: hidden;
245
+ height: 100%;
246
+ padding: 0 10px;
247
+ }
248
+ .asciinema-player .control-bar .progressbar .bar {
249
+ display: block;
250
+ cursor: pointer;
251
+ height: 100%;
252
+ padding-top: 15px;
253
+ font-size: 0;
254
+ }
255
+ .asciinema-player .control-bar .progressbar .bar .gutter {
256
+ display: block;
257
+ height: 3px;
258
+ background-color: #333;
259
+ }
260
+ .asciinema-player .control-bar .progressbar .bar .gutter span {
261
+ display: inline-block;
262
+ height: 100%;
263
+ background-color: #bbbbbb;
264
+ border-radius: 3px;
265
+ }
266
+ .asciinema-player .control-bar.live .progressbar .bar {
267
+ cursor: default;
268
+ }
269
+ .asciinema-player .control-bar .fullscreen-button {
270
+ display: block;
271
+ float: right;
272
+ width: 14px;
273
+ height: 14px;
274
+ padding: 9px;
275
+ cursor: pointer;
276
+ }
277
+ .asciinema-player .control-bar .fullscreen-button svg {
278
+ width: 14px;
279
+ height: 14px;
280
+ }
281
+ .asciinema-player .control-bar .fullscreen-button svg:first-child {
282
+ display: inline;
283
+ }
284
+ .asciinema-player .control-bar .fullscreen-button svg:last-child {
285
+ display: none;
286
+ }
287
+ .asciinema-player-wrapper.hud .control-bar {
288
+ bottom: 0px;
289
+ }
290
+ .asciinema-player-wrapper:fullscreen .fullscreen-button svg:first-child {
291
+ display: none;
292
+ }
293
+ .asciinema-player-wrapper:fullscreen .fullscreen-button svg:last-child {
294
+ display: inline;
295
+ }
296
+ .asciinema-player-wrapper:-webkit-full-screen .fullscreen-button svg:first-child {
297
+ display: none;
298
+ }
299
+ .asciinema-player-wrapper:-webkit-full-screen .fullscreen-button svg:last-child {
300
+ display: inline;
301
+ }
302
+ .asciinema-player-wrapper:-moz-full-screen .fullscreen-button svg:first-child {
303
+ display: none;
304
+ }
305
+ .asciinema-player-wrapper:-moz-full-screen .fullscreen-button svg:last-child {
306
+ display: inline;
307
+ }
308
+ .asciinema-player-wrapper:-ms-fullscreen .fullscreen-button svg:first-child {
309
+ display: none;
310
+ }
311
+ .asciinema-player-wrapper:-ms-fullscreen .fullscreen-button svg:last-child {
312
+ display: inline;
313
+ }
314
+ .asciinema-player .loading {
315
+ z-index: 10;
316
+ background-repeat: no-repeat;
317
+ background-position: center;
318
+ position: absolute;
319
+ top: 0;
320
+ left: 0;
321
+ right: 0;
322
+ bottom: 32px;
323
+ background-color: rgba(0, 0, 0, 0.5);
324
+ }
325
+ .asciinema-player .start-prompt {
326
+ z-index: 10;
327
+ background-repeat: no-repeat;
328
+ background-position: center;
329
+ position: absolute;
330
+ top: 0;
331
+ left: 0;
332
+ right: 0;
333
+ bottom: 32px;
334
+ z-index: 20;
335
+ cursor: pointer;
336
+ }
337
+ .asciinema-player .start-prompt .play-button {
338
+ font-size: 0px;
339
+ }
340
+ .asciinema-player .start-prompt .play-button {
341
+ position: absolute;
342
+ left: 0;
343
+ top: 0;
344
+ right: 0;
345
+ bottom: 0;
346
+ text-align: center;
347
+ color: white;
348
+ display: table;
349
+ width: 100%;
350
+ height: 100%;
351
+ }
352
+ .asciinema-player .start-prompt .play-button div {
353
+ vertical-align: middle;
354
+ display: table-cell;
355
+ }
356
+ .asciinema-player .start-prompt .play-button div span {
357
+ width: 96px;
358
+ height: 96px;
359
+ display: inline-block;
360
+ }
361
+ @-webkit-keyframes expand {
362
+ 0% {
363
+ -webkit-transform: scale(0);
364
+ }
365
+ 50% {
366
+ -webkit-transform: scale(1);
367
+ }
368
+ 100% {
369
+ z-index: 1;
370
+ }
371
+ }
372
+ @-moz-keyframes expand {
373
+ 0% {
374
+ -moz-transform: scale(0);
375
+ }
376
+ 50% {
377
+ -moz-transform: scale(1);
378
+ }
379
+ 100% {
380
+ z-index: 1;
381
+ }
382
+ }
383
+ @-o-keyframes expand {
384
+ 0% {
385
+ -o-transform: scale(0);
386
+ }
387
+ 50% {
388
+ -o-transform: scale(1);
389
+ }
390
+ 100% {
391
+ z-index: 1;
392
+ }
393
+ }
394
+ @keyframes expand {
395
+ 0% {
396
+ transform: scale(0);
397
+ }
398
+ 50% {
399
+ transform: scale(1);
400
+ }
401
+ 100% {
402
+ z-index: 1;
403
+ }
404
+ }
405
+ .loader {
406
+ position: absolute;
407
+ left: 50%;
408
+ top: 50%;
409
+ margin: -20px 0 0 -20px;
410
+ background-color: white;
411
+ border-radius: 50%;
412
+ box-shadow: 0 0 0 6.66667px #141414;
413
+ width: 40px;
414
+ height: 40px;
415
+ }
416
+ .loader:before,
417
+ .loader:after {
418
+ content: "";
419
+ position: absolute;
420
+ left: 50%;
421
+ top: 50%;
422
+ display: block;
423
+ margin: -21px 0 0 -21px;
424
+ border-radius: 50%;
425
+ z-index: 2;
426
+ width: 42px;
427
+ height: 42px;
428
+ }
429
+ .loader:before {
430
+ background-color: #141414;
431
+ -webkit-animation: expand 1.6s linear infinite both;
432
+ -moz-animation: expand 1.6s linear infinite both;
433
+ animation: expand 1.6s linear infinite both;
434
+ }
435
+ .loader:after {
436
+ background-color: white;
437
+ -webkit-animation: expand 1.6s linear 0.8s infinite both;
438
+ -moz-animation: expand 1.6s linear 0.8s infinite both;
439
+ animation: expand 1.6s linear 0.8s infinite both;
440
+ }
441
+ .asciinema-terminal .fg-16 {
442
+ color: #000000;
443
+ }
444
+ .asciinema-terminal .bg-16 {
445
+ background-color: #000000;
446
+ }
447
+ .asciinema-terminal .fg-17 {
448
+ color: #00005f;
449
+ }
450
+ .asciinema-terminal .bg-17 {
451
+ background-color: #00005f;
452
+ }
453
+ .asciinema-terminal .fg-18 {
454
+ color: #000087;
455
+ }
456
+ .asciinema-terminal .bg-18 {
457
+ background-color: #000087;
458
+ }
459
+ .asciinema-terminal .fg-19 {
460
+ color: #0000af;
461
+ }
462
+ .asciinema-terminal .bg-19 {
463
+ background-color: #0000af;
464
+ }
465
+ .asciinema-terminal .fg-20 {
466
+ color: #0000d7;
467
+ }
468
+ .asciinema-terminal .bg-20 {
469
+ background-color: #0000d7;
470
+ }
471
+ .asciinema-terminal .fg-21 {
472
+ color: #0000ff;
473
+ }
474
+ .asciinema-terminal .bg-21 {
475
+ background-color: #0000ff;
476
+ }
477
+ .asciinema-terminal .fg-22 {
478
+ color: #005f00;
479
+ }
480
+ .asciinema-terminal .bg-22 {
481
+ background-color: #005f00;
482
+ }
483
+ .asciinema-terminal .fg-23 {
484
+ color: #005f5f;
485
+ }
486
+ .asciinema-terminal .bg-23 {
487
+ background-color: #005f5f;
488
+ }
489
+ .asciinema-terminal .fg-24 {
490
+ color: #005f87;
491
+ }
492
+ .asciinema-terminal .bg-24 {
493
+ background-color: #005f87;
494
+ }
495
+ .asciinema-terminal .fg-25 {
496
+ color: #005faf;
497
+ }
498
+ .asciinema-terminal .bg-25 {
499
+ background-color: #005faf;
500
+ }
501
+ .asciinema-terminal .fg-26 {
502
+ color: #005fd7;
503
+ }
504
+ .asciinema-terminal .bg-26 {
505
+ background-color: #005fd7;
506
+ }
507
+ .asciinema-terminal .fg-27 {
508
+ color: #005fff;
509
+ }
510
+ .asciinema-terminal .bg-27 {
511
+ background-color: #005fff;
512
+ }
513
+ .asciinema-terminal .fg-28 {
514
+ color: #008700;
515
+ }
516
+ .asciinema-terminal .bg-28 {
517
+ background-color: #008700;
518
+ }
519
+ .asciinema-terminal .fg-29 {
520
+ color: #00875f;
521
+ }
522
+ .asciinema-terminal .bg-29 {
523
+ background-color: #00875f;
524
+ }
525
+ .asciinema-terminal .fg-30 {
526
+ color: #008787;
527
+ }
528
+ .asciinema-terminal .bg-30 {
529
+ background-color: #008787;
530
+ }
531
+ .asciinema-terminal .fg-31 {
532
+ color: #0087af;
533
+ }
534
+ .asciinema-terminal .bg-31 {
535
+ background-color: #0087af;
536
+ }
537
+ .asciinema-terminal .fg-32 {
538
+ color: #0087d7;
539
+ }
540
+ .asciinema-terminal .bg-32 {
541
+ background-color: #0087d7;
542
+ }
543
+ .asciinema-terminal .fg-33 {
544
+ color: #0087ff;
545
+ }
546
+ .asciinema-terminal .bg-33 {
547
+ background-color: #0087ff;
548
+ }
549
+ .asciinema-terminal .fg-34 {
550
+ color: #00af00;
551
+ }
552
+ .asciinema-terminal .bg-34 {
553
+ background-color: #00af00;
554
+ }
555
+ .asciinema-terminal .fg-35 {
556
+ color: #00af5f;
557
+ }
558
+ .asciinema-terminal .bg-35 {
559
+ background-color: #00af5f;
560
+ }
561
+ .asciinema-terminal .fg-36 {
562
+ color: #00af87;
563
+ }
564
+ .asciinema-terminal .bg-36 {
565
+ background-color: #00af87;
566
+ }
567
+ .asciinema-terminal .fg-37 {
568
+ color: #00afaf;
569
+ }
570
+ .asciinema-terminal .bg-37 {
571
+ background-color: #00afaf;
572
+ }
573
+ .asciinema-terminal .fg-38 {
574
+ color: #00afd7;
575
+ }
576
+ .asciinema-terminal .bg-38 {
577
+ background-color: #00afd7;
578
+ }
579
+ .asciinema-terminal .fg-39 {
580
+ color: #00afff;
581
+ }
582
+ .asciinema-terminal .bg-39 {
583
+ background-color: #00afff;
584
+ }
585
+ .asciinema-terminal .fg-40 {
586
+ color: #00d700;
587
+ }
588
+ .asciinema-terminal .bg-40 {
589
+ background-color: #00d700;
590
+ }
591
+ .asciinema-terminal .fg-41 {
592
+ color: #00d75f;
593
+ }
594
+ .asciinema-terminal .bg-41 {
595
+ background-color: #00d75f;
596
+ }
597
+ .asciinema-terminal .fg-42 {
598
+ color: #00d787;
599
+ }
600
+ .asciinema-terminal .bg-42 {
601
+ background-color: #00d787;
602
+ }
603
+ .asciinema-terminal .fg-43 {
604
+ color: #00d7af;
605
+ }
606
+ .asciinema-terminal .bg-43 {
607
+ background-color: #00d7af;
608
+ }
609
+ .asciinema-terminal .fg-44 {
610
+ color: #00d7d7;
611
+ }
612
+ .asciinema-terminal .bg-44 {
613
+ background-color: #00d7d7;
614
+ }
615
+ .asciinema-terminal .fg-45 {
616
+ color: #00d7ff;
617
+ }
618
+ .asciinema-terminal .bg-45 {
619
+ background-color: #00d7ff;
620
+ }
621
+ .asciinema-terminal .fg-46 {
622
+ color: #00ff00;
623
+ }
624
+ .asciinema-terminal .bg-46 {
625
+ background-color: #00ff00;
626
+ }
627
+ .asciinema-terminal .fg-47 {
628
+ color: #00ff5f;
629
+ }
630
+ .asciinema-terminal .bg-47 {
631
+ background-color: #00ff5f;
632
+ }
633
+ .asciinema-terminal .fg-48 {
634
+ color: #00ff87;
635
+ }
636
+ .asciinema-terminal .bg-48 {
637
+ background-color: #00ff87;
638
+ }
639
+ .asciinema-terminal .fg-49 {
640
+ color: #00ffaf;
641
+ }
642
+ .asciinema-terminal .bg-49 {
643
+ background-color: #00ffaf;
644
+ }
645
+ .asciinema-terminal .fg-50 {
646
+ color: #00ffd7;
647
+ }
648
+ .asciinema-terminal .bg-50 {
649
+ background-color: #00ffd7;
650
+ }
651
+ .asciinema-terminal .fg-51 {
652
+ color: #00ffff;
653
+ }
654
+ .asciinema-terminal .bg-51 {
655
+ background-color: #00ffff;
656
+ }
657
+ .asciinema-terminal .fg-52 {
658
+ color: #5f0000;
659
+ }
660
+ .asciinema-terminal .bg-52 {
661
+ background-color: #5f0000;
662
+ }
663
+ .asciinema-terminal .fg-53 {
664
+ color: #5f005f;
665
+ }
666
+ .asciinema-terminal .bg-53 {
667
+ background-color: #5f005f;
668
+ }
669
+ .asciinema-terminal .fg-54 {
670
+ color: #5f0087;
671
+ }
672
+ .asciinema-terminal .bg-54 {
673
+ background-color: #5f0087;
674
+ }
675
+ .asciinema-terminal .fg-55 {
676
+ color: #5f00af;
677
+ }
678
+ .asciinema-terminal .bg-55 {
679
+ background-color: #5f00af;
680
+ }
681
+ .asciinema-terminal .fg-56 {
682
+ color: #5f00d7;
683
+ }
684
+ .asciinema-terminal .bg-56 {
685
+ background-color: #5f00d7;
686
+ }
687
+ .asciinema-terminal .fg-57 {
688
+ color: #5f00ff;
689
+ }
690
+ .asciinema-terminal .bg-57 {
691
+ background-color: #5f00ff;
692
+ }
693
+ .asciinema-terminal .fg-58 {
694
+ color: #5f5f00;
695
+ }
696
+ .asciinema-terminal .bg-58 {
697
+ background-color: #5f5f00;
698
+ }
699
+ .asciinema-terminal .fg-59 {
700
+ color: #5f5f5f;
701
+ }
702
+ .asciinema-terminal .bg-59 {
703
+ background-color: #5f5f5f;
704
+ }
705
+ .asciinema-terminal .fg-60 {
706
+ color: #5f5f87;
707
+ }
708
+ .asciinema-terminal .bg-60 {
709
+ background-color: #5f5f87;
710
+ }
711
+ .asciinema-terminal .fg-61 {
712
+ color: #5f5faf;
713
+ }
714
+ .asciinema-terminal .bg-61 {
715
+ background-color: #5f5faf;
716
+ }
717
+ .asciinema-terminal .fg-62 {
718
+ color: #5f5fd7;
719
+ }
720
+ .asciinema-terminal .bg-62 {
721
+ background-color: #5f5fd7;
722
+ }
723
+ .asciinema-terminal .fg-63 {
724
+ color: #5f5fff;
725
+ }
726
+ .asciinema-terminal .bg-63 {
727
+ background-color: #5f5fff;
728
+ }
729
+ .asciinema-terminal .fg-64 {
730
+ color: #5f8700;
731
+ }
732
+ .asciinema-terminal .bg-64 {
733
+ background-color: #5f8700;
734
+ }
735
+ .asciinema-terminal .fg-65 {
736
+ color: #5f875f;
737
+ }
738
+ .asciinema-terminal .bg-65 {
739
+ background-color: #5f875f;
740
+ }
741
+ .asciinema-terminal .fg-66 {
742
+ color: #5f8787;
743
+ }
744
+ .asciinema-terminal .bg-66 {
745
+ background-color: #5f8787;
746
+ }
747
+ .asciinema-terminal .fg-67 {
748
+ color: #5f87af;
749
+ }
750
+ .asciinema-terminal .bg-67 {
751
+ background-color: #5f87af;
752
+ }
753
+ .asciinema-terminal .fg-68 {
754
+ color: #5f87d7;
755
+ }
756
+ .asciinema-terminal .bg-68 {
757
+ background-color: #5f87d7;
758
+ }
759
+ .asciinema-terminal .fg-69 {
760
+ color: #5f87ff;
761
+ }
762
+ .asciinema-terminal .bg-69 {
763
+ background-color: #5f87ff;
764
+ }
765
+ .asciinema-terminal .fg-70 {
766
+ color: #5faf00;
767
+ }
768
+ .asciinema-terminal .bg-70 {
769
+ background-color: #5faf00;
770
+ }
771
+ .asciinema-terminal .fg-71 {
772
+ color: #5faf5f;
773
+ }
774
+ .asciinema-terminal .bg-71 {
775
+ background-color: #5faf5f;
776
+ }
777
+ .asciinema-terminal .fg-72 {
778
+ color: #5faf87;
779
+ }
780
+ .asciinema-terminal .bg-72 {
781
+ background-color: #5faf87;
782
+ }
783
+ .asciinema-terminal .fg-73 {
784
+ color: #5fafaf;
785
+ }
786
+ .asciinema-terminal .bg-73 {
787
+ background-color: #5fafaf;
788
+ }
789
+ .asciinema-terminal .fg-74 {
790
+ color: #5fafd7;
791
+ }
792
+ .asciinema-terminal .bg-74 {
793
+ background-color: #5fafd7;
794
+ }
795
+ .asciinema-terminal .fg-75 {
796
+ color: #5fafff;
797
+ }
798
+ .asciinema-terminal .bg-75 {
799
+ background-color: #5fafff;
800
+ }
801
+ .asciinema-terminal .fg-76 {
802
+ color: #5fd700;
803
+ }
804
+ .asciinema-terminal .bg-76 {
805
+ background-color: #5fd700;
806
+ }
807
+ .asciinema-terminal .fg-77 {
808
+ color: #5fd75f;
809
+ }
810
+ .asciinema-terminal .bg-77 {
811
+ background-color: #5fd75f;
812
+ }
813
+ .asciinema-terminal .fg-78 {
814
+ color: #5fd787;
815
+ }
816
+ .asciinema-terminal .bg-78 {
817
+ background-color: #5fd787;
818
+ }
819
+ .asciinema-terminal .fg-79 {
820
+ color: #5fd7af;
821
+ }
822
+ .asciinema-terminal .bg-79 {
823
+ background-color: #5fd7af;
824
+ }
825
+ .asciinema-terminal .fg-80 {
826
+ color: #5fd7d7;
827
+ }
828
+ .asciinema-terminal .bg-80 {
829
+ background-color: #5fd7d7;
830
+ }
831
+ .asciinema-terminal .fg-81 {
832
+ color: #5fd7ff;
833
+ }
834
+ .asciinema-terminal .bg-81 {
835
+ background-color: #5fd7ff;
836
+ }
837
+ .asciinema-terminal .fg-82 {
838
+ color: #5fff00;
839
+ }
840
+ .asciinema-terminal .bg-82 {
841
+ background-color: #5fff00;
842
+ }
843
+ .asciinema-terminal .fg-83 {
844
+ color: #5fff5f;
845
+ }
846
+ .asciinema-terminal .bg-83 {
847
+ background-color: #5fff5f;
848
+ }
849
+ .asciinema-terminal .fg-84 {
850
+ color: #5fff87;
851
+ }
852
+ .asciinema-terminal .bg-84 {
853
+ background-color: #5fff87;
854
+ }
855
+ .asciinema-terminal .fg-85 {
856
+ color: #5fffaf;
857
+ }
858
+ .asciinema-terminal .bg-85 {
859
+ background-color: #5fffaf;
860
+ }
861
+ .asciinema-terminal .fg-86 {
862
+ color: #5fffd7;
863
+ }
864
+ .asciinema-terminal .bg-86 {
865
+ background-color: #5fffd7;
866
+ }
867
+ .asciinema-terminal .fg-87 {
868
+ color: #5fffff;
869
+ }
870
+ .asciinema-terminal .bg-87 {
871
+ background-color: #5fffff;
872
+ }
873
+ .asciinema-terminal .fg-88 {
874
+ color: #870000;
875
+ }
876
+ .asciinema-terminal .bg-88 {
877
+ background-color: #870000;
878
+ }
879
+ .asciinema-terminal .fg-89 {
880
+ color: #87005f;
881
+ }
882
+ .asciinema-terminal .bg-89 {
883
+ background-color: #87005f;
884
+ }
885
+ .asciinema-terminal .fg-90 {
886
+ color: #870087;
887
+ }
888
+ .asciinema-terminal .bg-90 {
889
+ background-color: #870087;
890
+ }
891
+ .asciinema-terminal .fg-91 {
892
+ color: #8700af;
893
+ }
894
+ .asciinema-terminal .bg-91 {
895
+ background-color: #8700af;
896
+ }
897
+ .asciinema-terminal .fg-92 {
898
+ color: #8700d7;
899
+ }
900
+ .asciinema-terminal .bg-92 {
901
+ background-color: #8700d7;
902
+ }
903
+ .asciinema-terminal .fg-93 {
904
+ color: #8700ff;
905
+ }
906
+ .asciinema-terminal .bg-93 {
907
+ background-color: #8700ff;
908
+ }
909
+ .asciinema-terminal .fg-94 {
910
+ color: #875f00;
911
+ }
912
+ .asciinema-terminal .bg-94 {
913
+ background-color: #875f00;
914
+ }
915
+ .asciinema-terminal .fg-95 {
916
+ color: #875f5f;
917
+ }
918
+ .asciinema-terminal .bg-95 {
919
+ background-color: #875f5f;
920
+ }
921
+ .asciinema-terminal .fg-96 {
922
+ color: #875f87;
923
+ }
924
+ .asciinema-terminal .bg-96 {
925
+ background-color: #875f87;
926
+ }
927
+ .asciinema-terminal .fg-97 {
928
+ color: #875faf;
929
+ }
930
+ .asciinema-terminal .bg-97 {
931
+ background-color: #875faf;
932
+ }
933
+ .asciinema-terminal .fg-98 {
934
+ color: #875fd7;
935
+ }
936
+ .asciinema-terminal .bg-98 {
937
+ background-color: #875fd7;
938
+ }
939
+ .asciinema-terminal .fg-99 {
940
+ color: #875fff;
941
+ }
942
+ .asciinema-terminal .bg-99 {
943
+ background-color: #875fff;
944
+ }
945
+ .asciinema-terminal .fg-100 {
946
+ color: #878700;
947
+ }
948
+ .asciinema-terminal .bg-100 {
949
+ background-color: #878700;
950
+ }
951
+ .asciinema-terminal .fg-101 {
952
+ color: #87875f;
953
+ }
954
+ .asciinema-terminal .bg-101 {
955
+ background-color: #87875f;
956
+ }
957
+ .asciinema-terminal .fg-102 {
958
+ color: #878787;
959
+ }
960
+ .asciinema-terminal .bg-102 {
961
+ background-color: #878787;
962
+ }
963
+ .asciinema-terminal .fg-103 {
964
+ color: #8787af;
965
+ }
966
+ .asciinema-terminal .bg-103 {
967
+ background-color: #8787af;
968
+ }
969
+ .asciinema-terminal .fg-104 {
970
+ color: #8787d7;
971
+ }
972
+ .asciinema-terminal .bg-104 {
973
+ background-color: #8787d7;
974
+ }
975
+ .asciinema-terminal .fg-105 {
976
+ color: #8787ff;
977
+ }
978
+ .asciinema-terminal .bg-105 {
979
+ background-color: #8787ff;
980
+ }
981
+ .asciinema-terminal .fg-106 {
982
+ color: #87af00;
983
+ }
984
+ .asciinema-terminal .bg-106 {
985
+ background-color: #87af00;
986
+ }
987
+ .asciinema-terminal .fg-107 {
988
+ color: #87af5f;
989
+ }
990
+ .asciinema-terminal .bg-107 {
991
+ background-color: #87af5f;
992
+ }
993
+ .asciinema-terminal .fg-108 {
994
+ color: #87af87;
995
+ }
996
+ .asciinema-terminal .bg-108 {
997
+ background-color: #87af87;
998
+ }
999
+ .asciinema-terminal .fg-109 {
1000
+ color: #87afaf;
1001
+ }
1002
+ .asciinema-terminal .bg-109 {
1003
+ background-color: #87afaf;
1004
+ }
1005
+ .asciinema-terminal .fg-110 {
1006
+ color: #87afd7;
1007
+ }
1008
+ .asciinema-terminal .bg-110 {
1009
+ background-color: #87afd7;
1010
+ }
1011
+ .asciinema-terminal .fg-111 {
1012
+ color: #87afff;
1013
+ }
1014
+ .asciinema-terminal .bg-111 {
1015
+ background-color: #87afff;
1016
+ }
1017
+ .asciinema-terminal .fg-112 {
1018
+ color: #87d700;
1019
+ }
1020
+ .asciinema-terminal .bg-112 {
1021
+ background-color: #87d700;
1022
+ }
1023
+ .asciinema-terminal .fg-113 {
1024
+ color: #87d75f;
1025
+ }
1026
+ .asciinema-terminal .bg-113 {
1027
+ background-color: #87d75f;
1028
+ }
1029
+ .asciinema-terminal .fg-114 {
1030
+ color: #87d787;
1031
+ }
1032
+ .asciinema-terminal .bg-114 {
1033
+ background-color: #87d787;
1034
+ }
1035
+ .asciinema-terminal .fg-115 {
1036
+ color: #87d7af;
1037
+ }
1038
+ .asciinema-terminal .bg-115 {
1039
+ background-color: #87d7af;
1040
+ }
1041
+ .asciinema-terminal .fg-116 {
1042
+ color: #87d7d7;
1043
+ }
1044
+ .asciinema-terminal .bg-116 {
1045
+ background-color: #87d7d7;
1046
+ }
1047
+ .asciinema-terminal .fg-117 {
1048
+ color: #87d7ff;
1049
+ }
1050
+ .asciinema-terminal .bg-117 {
1051
+ background-color: #87d7ff;
1052
+ }
1053
+ .asciinema-terminal .fg-118 {
1054
+ color: #87ff00;
1055
+ }
1056
+ .asciinema-terminal .bg-118 {
1057
+ background-color: #87ff00;
1058
+ }
1059
+ .asciinema-terminal .fg-119 {
1060
+ color: #87ff5f;
1061
+ }
1062
+ .asciinema-terminal .bg-119 {
1063
+ background-color: #87ff5f;
1064
+ }
1065
+ .asciinema-terminal .fg-120 {
1066
+ color: #87ff87;
1067
+ }
1068
+ .asciinema-terminal .bg-120 {
1069
+ background-color: #87ff87;
1070
+ }
1071
+ .asciinema-terminal .fg-121 {
1072
+ color: #87ffaf;
1073
+ }
1074
+ .asciinema-terminal .bg-121 {
1075
+ background-color: #87ffaf;
1076
+ }
1077
+ .asciinema-terminal .fg-122 {
1078
+ color: #87ffd7;
1079
+ }
1080
+ .asciinema-terminal .bg-122 {
1081
+ background-color: #87ffd7;
1082
+ }
1083
+ .asciinema-terminal .fg-123 {
1084
+ color: #87ffff;
1085
+ }
1086
+ .asciinema-terminal .bg-123 {
1087
+ background-color: #87ffff;
1088
+ }
1089
+ .asciinema-terminal .fg-124 {
1090
+ color: #af0000;
1091
+ }
1092
+ .asciinema-terminal .bg-124 {
1093
+ background-color: #af0000;
1094
+ }
1095
+ .asciinema-terminal .fg-125 {
1096
+ color: #af005f;
1097
+ }
1098
+ .asciinema-terminal .bg-125 {
1099
+ background-color: #af005f;
1100
+ }
1101
+ .asciinema-terminal .fg-126 {
1102
+ color: #af0087;
1103
+ }
1104
+ .asciinema-terminal .bg-126 {
1105
+ background-color: #af0087;
1106
+ }
1107
+ .asciinema-terminal .fg-127 {
1108
+ color: #af00af;
1109
+ }
1110
+ .asciinema-terminal .bg-127 {
1111
+ background-color: #af00af;
1112
+ }
1113
+ .asciinema-terminal .fg-128 {
1114
+ color: #af00d7;
1115
+ }
1116
+ .asciinema-terminal .bg-128 {
1117
+ background-color: #af00d7;
1118
+ }
1119
+ .asciinema-terminal .fg-129 {
1120
+ color: #af00ff;
1121
+ }
1122
+ .asciinema-terminal .bg-129 {
1123
+ background-color: #af00ff;
1124
+ }
1125
+ .asciinema-terminal .fg-130 {
1126
+ color: #af5f00;
1127
+ }
1128
+ .asciinema-terminal .bg-130 {
1129
+ background-color: #af5f00;
1130
+ }
1131
+ .asciinema-terminal .fg-131 {
1132
+ color: #af5f5f;
1133
+ }
1134
+ .asciinema-terminal .bg-131 {
1135
+ background-color: #af5f5f;
1136
+ }
1137
+ .asciinema-terminal .fg-132 {
1138
+ color: #af5f87;
1139
+ }
1140
+ .asciinema-terminal .bg-132 {
1141
+ background-color: #af5f87;
1142
+ }
1143
+ .asciinema-terminal .fg-133 {
1144
+ color: #af5faf;
1145
+ }
1146
+ .asciinema-terminal .bg-133 {
1147
+ background-color: #af5faf;
1148
+ }
1149
+ .asciinema-terminal .fg-134 {
1150
+ color: #af5fd7;
1151
+ }
1152
+ .asciinema-terminal .bg-134 {
1153
+ background-color: #af5fd7;
1154
+ }
1155
+ .asciinema-terminal .fg-135 {
1156
+ color: #af5fff;
1157
+ }
1158
+ .asciinema-terminal .bg-135 {
1159
+ background-color: #af5fff;
1160
+ }
1161
+ .asciinema-terminal .fg-136 {
1162
+ color: #af8700;
1163
+ }
1164
+ .asciinema-terminal .bg-136 {
1165
+ background-color: #af8700;
1166
+ }
1167
+ .asciinema-terminal .fg-137 {
1168
+ color: #af875f;
1169
+ }
1170
+ .asciinema-terminal .bg-137 {
1171
+ background-color: #af875f;
1172
+ }
1173
+ .asciinema-terminal .fg-138 {
1174
+ color: #af8787;
1175
+ }
1176
+ .asciinema-terminal .bg-138 {
1177
+ background-color: #af8787;
1178
+ }
1179
+ .asciinema-terminal .fg-139 {
1180
+ color: #af87af;
1181
+ }
1182
+ .asciinema-terminal .bg-139 {
1183
+ background-color: #af87af;
1184
+ }
1185
+ .asciinema-terminal .fg-140 {
1186
+ color: #af87d7;
1187
+ }
1188
+ .asciinema-terminal .bg-140 {
1189
+ background-color: #af87d7;
1190
+ }
1191
+ .asciinema-terminal .fg-141 {
1192
+ color: #af87ff;
1193
+ }
1194
+ .asciinema-terminal .bg-141 {
1195
+ background-color: #af87ff;
1196
+ }
1197
+ .asciinema-terminal .fg-142 {
1198
+ color: #afaf00;
1199
+ }
1200
+ .asciinema-terminal .bg-142 {
1201
+ background-color: #afaf00;
1202
+ }
1203
+ .asciinema-terminal .fg-143 {
1204
+ color: #afaf5f;
1205
+ }
1206
+ .asciinema-terminal .bg-143 {
1207
+ background-color: #afaf5f;
1208
+ }
1209
+ .asciinema-terminal .fg-144 {
1210
+ color: #afaf87;
1211
+ }
1212
+ .asciinema-terminal .bg-144 {
1213
+ background-color: #afaf87;
1214
+ }
1215
+ .asciinema-terminal .fg-145 {
1216
+ color: #afafaf;
1217
+ }
1218
+ .asciinema-terminal .bg-145 {
1219
+ background-color: #afafaf;
1220
+ }
1221
+ .asciinema-terminal .fg-146 {
1222
+ color: #afafd7;
1223
+ }
1224
+ .asciinema-terminal .bg-146 {
1225
+ background-color: #afafd7;
1226
+ }
1227
+ .asciinema-terminal .fg-147 {
1228
+ color: #afafff;
1229
+ }
1230
+ .asciinema-terminal .bg-147 {
1231
+ background-color: #afafff;
1232
+ }
1233
+ .asciinema-terminal .fg-148 {
1234
+ color: #afd700;
1235
+ }
1236
+ .asciinema-terminal .bg-148 {
1237
+ background-color: #afd700;
1238
+ }
1239
+ .asciinema-terminal .fg-149 {
1240
+ color: #afd75f;
1241
+ }
1242
+ .asciinema-terminal .bg-149 {
1243
+ background-color: #afd75f;
1244
+ }
1245
+ .asciinema-terminal .fg-150 {
1246
+ color: #afd787;
1247
+ }
1248
+ .asciinema-terminal .bg-150 {
1249
+ background-color: #afd787;
1250
+ }
1251
+ .asciinema-terminal .fg-151 {
1252
+ color: #afd7af;
1253
+ }
1254
+ .asciinema-terminal .bg-151 {
1255
+ background-color: #afd7af;
1256
+ }
1257
+ .asciinema-terminal .fg-152 {
1258
+ color: #afd7d7;
1259
+ }
1260
+ .asciinema-terminal .bg-152 {
1261
+ background-color: #afd7d7;
1262
+ }
1263
+ .asciinema-terminal .fg-153 {
1264
+ color: #afd7ff;
1265
+ }
1266
+ .asciinema-terminal .bg-153 {
1267
+ background-color: #afd7ff;
1268
+ }
1269
+ .asciinema-terminal .fg-154 {
1270
+ color: #afff00;
1271
+ }
1272
+ .asciinema-terminal .bg-154 {
1273
+ background-color: #afff00;
1274
+ }
1275
+ .asciinema-terminal .fg-155 {
1276
+ color: #afff5f;
1277
+ }
1278
+ .asciinema-terminal .bg-155 {
1279
+ background-color: #afff5f;
1280
+ }
1281
+ .asciinema-terminal .fg-156 {
1282
+ color: #afff87;
1283
+ }
1284
+ .asciinema-terminal .bg-156 {
1285
+ background-color: #afff87;
1286
+ }
1287
+ .asciinema-terminal .fg-157 {
1288
+ color: #afffaf;
1289
+ }
1290
+ .asciinema-terminal .bg-157 {
1291
+ background-color: #afffaf;
1292
+ }
1293
+ .asciinema-terminal .fg-158 {
1294
+ color: #afffd7;
1295
+ }
1296
+ .asciinema-terminal .bg-158 {
1297
+ background-color: #afffd7;
1298
+ }
1299
+ .asciinema-terminal .fg-159 {
1300
+ color: #afffff;
1301
+ }
1302
+ .asciinema-terminal .bg-159 {
1303
+ background-color: #afffff;
1304
+ }
1305
+ .asciinema-terminal .fg-160 {
1306
+ color: #d70000;
1307
+ }
1308
+ .asciinema-terminal .bg-160 {
1309
+ background-color: #d70000;
1310
+ }
1311
+ .asciinema-terminal .fg-161 {
1312
+ color: #d7005f;
1313
+ }
1314
+ .asciinema-terminal .bg-161 {
1315
+ background-color: #d7005f;
1316
+ }
1317
+ .asciinema-terminal .fg-162 {
1318
+ color: #d70087;
1319
+ }
1320
+ .asciinema-terminal .bg-162 {
1321
+ background-color: #d70087;
1322
+ }
1323
+ .asciinema-terminal .fg-163 {
1324
+ color: #d700af;
1325
+ }
1326
+ .asciinema-terminal .bg-163 {
1327
+ background-color: #d700af;
1328
+ }
1329
+ .asciinema-terminal .fg-164 {
1330
+ color: #d700d7;
1331
+ }
1332
+ .asciinema-terminal .bg-164 {
1333
+ background-color: #d700d7;
1334
+ }
1335
+ .asciinema-terminal .fg-165 {
1336
+ color: #d700ff;
1337
+ }
1338
+ .asciinema-terminal .bg-165 {
1339
+ background-color: #d700ff;
1340
+ }
1341
+ .asciinema-terminal .fg-166 {
1342
+ color: #d75f00;
1343
+ }
1344
+ .asciinema-terminal .bg-166 {
1345
+ background-color: #d75f00;
1346
+ }
1347
+ .asciinema-terminal .fg-167 {
1348
+ color: #d75f5f;
1349
+ }
1350
+ .asciinema-terminal .bg-167 {
1351
+ background-color: #d75f5f;
1352
+ }
1353
+ .asciinema-terminal .fg-168 {
1354
+ color: #d75f87;
1355
+ }
1356
+ .asciinema-terminal .bg-168 {
1357
+ background-color: #d75f87;
1358
+ }
1359
+ .asciinema-terminal .fg-169 {
1360
+ color: #d75faf;
1361
+ }
1362
+ .asciinema-terminal .bg-169 {
1363
+ background-color: #d75faf;
1364
+ }
1365
+ .asciinema-terminal .fg-170 {
1366
+ color: #d75fd7;
1367
+ }
1368
+ .asciinema-terminal .bg-170 {
1369
+ background-color: #d75fd7;
1370
+ }
1371
+ .asciinema-terminal .fg-171 {
1372
+ color: #d75fff;
1373
+ }
1374
+ .asciinema-terminal .bg-171 {
1375
+ background-color: #d75fff;
1376
+ }
1377
+ .asciinema-terminal .fg-172 {
1378
+ color: #d78700;
1379
+ }
1380
+ .asciinema-terminal .bg-172 {
1381
+ background-color: #d78700;
1382
+ }
1383
+ .asciinema-terminal .fg-173 {
1384
+ color: #d7875f;
1385
+ }
1386
+ .asciinema-terminal .bg-173 {
1387
+ background-color: #d7875f;
1388
+ }
1389
+ .asciinema-terminal .fg-174 {
1390
+ color: #d78787;
1391
+ }
1392
+ .asciinema-terminal .bg-174 {
1393
+ background-color: #d78787;
1394
+ }
1395
+ .asciinema-terminal .fg-175 {
1396
+ color: #d787af;
1397
+ }
1398
+ .asciinema-terminal .bg-175 {
1399
+ background-color: #d787af;
1400
+ }
1401
+ .asciinema-terminal .fg-176 {
1402
+ color: #d787d7;
1403
+ }
1404
+ .asciinema-terminal .bg-176 {
1405
+ background-color: #d787d7;
1406
+ }
1407
+ .asciinema-terminal .fg-177 {
1408
+ color: #d787ff;
1409
+ }
1410
+ .asciinema-terminal .bg-177 {
1411
+ background-color: #d787ff;
1412
+ }
1413
+ .asciinema-terminal .fg-178 {
1414
+ color: #d7af00;
1415
+ }
1416
+ .asciinema-terminal .bg-178 {
1417
+ background-color: #d7af00;
1418
+ }
1419
+ .asciinema-terminal .fg-179 {
1420
+ color: #d7af5f;
1421
+ }
1422
+ .asciinema-terminal .bg-179 {
1423
+ background-color: #d7af5f;
1424
+ }
1425
+ .asciinema-terminal .fg-180 {
1426
+ color: #d7af87;
1427
+ }
1428
+ .asciinema-terminal .bg-180 {
1429
+ background-color: #d7af87;
1430
+ }
1431
+ .asciinema-terminal .fg-181 {
1432
+ color: #d7afaf;
1433
+ }
1434
+ .asciinema-terminal .bg-181 {
1435
+ background-color: #d7afaf;
1436
+ }
1437
+ .asciinema-terminal .fg-182 {
1438
+ color: #d7afd7;
1439
+ }
1440
+ .asciinema-terminal .bg-182 {
1441
+ background-color: #d7afd7;
1442
+ }
1443
+ .asciinema-terminal .fg-183 {
1444
+ color: #d7afff;
1445
+ }
1446
+ .asciinema-terminal .bg-183 {
1447
+ background-color: #d7afff;
1448
+ }
1449
+ .asciinema-terminal .fg-184 {
1450
+ color: #d7d700;
1451
+ }
1452
+ .asciinema-terminal .bg-184 {
1453
+ background-color: #d7d700;
1454
+ }
1455
+ .asciinema-terminal .fg-185 {
1456
+ color: #d7d75f;
1457
+ }
1458
+ .asciinema-terminal .bg-185 {
1459
+ background-color: #d7d75f;
1460
+ }
1461
+ .asciinema-terminal .fg-186 {
1462
+ color: #d7d787;
1463
+ }
1464
+ .asciinema-terminal .bg-186 {
1465
+ background-color: #d7d787;
1466
+ }
1467
+ .asciinema-terminal .fg-187 {
1468
+ color: #d7d7af;
1469
+ }
1470
+ .asciinema-terminal .bg-187 {
1471
+ background-color: #d7d7af;
1472
+ }
1473
+ .asciinema-terminal .fg-188 {
1474
+ color: #d7d7d7;
1475
+ }
1476
+ .asciinema-terminal .bg-188 {
1477
+ background-color: #d7d7d7;
1478
+ }
1479
+ .asciinema-terminal .fg-189 {
1480
+ color: #d7d7ff;
1481
+ }
1482
+ .asciinema-terminal .bg-189 {
1483
+ background-color: #d7d7ff;
1484
+ }
1485
+ .asciinema-terminal .fg-190 {
1486
+ color: #d7ff00;
1487
+ }
1488
+ .asciinema-terminal .bg-190 {
1489
+ background-color: #d7ff00;
1490
+ }
1491
+ .asciinema-terminal .fg-191 {
1492
+ color: #d7ff5f;
1493
+ }
1494
+ .asciinema-terminal .bg-191 {
1495
+ background-color: #d7ff5f;
1496
+ }
1497
+ .asciinema-terminal .fg-192 {
1498
+ color: #d7ff87;
1499
+ }
1500
+ .asciinema-terminal .bg-192 {
1501
+ background-color: #d7ff87;
1502
+ }
1503
+ .asciinema-terminal .fg-193 {
1504
+ color: #d7ffaf;
1505
+ }
1506
+ .asciinema-terminal .bg-193 {
1507
+ background-color: #d7ffaf;
1508
+ }
1509
+ .asciinema-terminal .fg-194 {
1510
+ color: #d7ffd7;
1511
+ }
1512
+ .asciinema-terminal .bg-194 {
1513
+ background-color: #d7ffd7;
1514
+ }
1515
+ .asciinema-terminal .fg-195 {
1516
+ color: #d7ffff;
1517
+ }
1518
+ .asciinema-terminal .bg-195 {
1519
+ background-color: #d7ffff;
1520
+ }
1521
+ .asciinema-terminal .fg-196 {
1522
+ color: #ff0000;
1523
+ }
1524
+ .asciinema-terminal .bg-196 {
1525
+ background-color: #ff0000;
1526
+ }
1527
+ .asciinema-terminal .fg-197 {
1528
+ color: #ff005f;
1529
+ }
1530
+ .asciinema-terminal .bg-197 {
1531
+ background-color: #ff005f;
1532
+ }
1533
+ .asciinema-terminal .fg-198 {
1534
+ color: #ff0087;
1535
+ }
1536
+ .asciinema-terminal .bg-198 {
1537
+ background-color: #ff0087;
1538
+ }
1539
+ .asciinema-terminal .fg-199 {
1540
+ color: #ff00af;
1541
+ }
1542
+ .asciinema-terminal .bg-199 {
1543
+ background-color: #ff00af;
1544
+ }
1545
+ .asciinema-terminal .fg-200 {
1546
+ color: #ff00d7;
1547
+ }
1548
+ .asciinema-terminal .bg-200 {
1549
+ background-color: #ff00d7;
1550
+ }
1551
+ .asciinema-terminal .fg-201 {
1552
+ color: #ff00ff;
1553
+ }
1554
+ .asciinema-terminal .bg-201 {
1555
+ background-color: #ff00ff;
1556
+ }
1557
+ .asciinema-terminal .fg-202 {
1558
+ color: #ff5f00;
1559
+ }
1560
+ .asciinema-terminal .bg-202 {
1561
+ background-color: #ff5f00;
1562
+ }
1563
+ .asciinema-terminal .fg-203 {
1564
+ color: #ff5f5f;
1565
+ }
1566
+ .asciinema-terminal .bg-203 {
1567
+ background-color: #ff5f5f;
1568
+ }
1569
+ .asciinema-terminal .fg-204 {
1570
+ color: #ff5f87;
1571
+ }
1572
+ .asciinema-terminal .bg-204 {
1573
+ background-color: #ff5f87;
1574
+ }
1575
+ .asciinema-terminal .fg-205 {
1576
+ color: #ff5faf;
1577
+ }
1578
+ .asciinema-terminal .bg-205 {
1579
+ background-color: #ff5faf;
1580
+ }
1581
+ .asciinema-terminal .fg-206 {
1582
+ color: #ff5fd7;
1583
+ }
1584
+ .asciinema-terminal .bg-206 {
1585
+ background-color: #ff5fd7;
1586
+ }
1587
+ .asciinema-terminal .fg-207 {
1588
+ color: #ff5fff;
1589
+ }
1590
+ .asciinema-terminal .bg-207 {
1591
+ background-color: #ff5fff;
1592
+ }
1593
+ .asciinema-terminal .fg-208 {
1594
+ color: #ff8700;
1595
+ }
1596
+ .asciinema-terminal .bg-208 {
1597
+ background-color: #ff8700;
1598
+ }
1599
+ .asciinema-terminal .fg-209 {
1600
+ color: #ff875f;
1601
+ }
1602
+ .asciinema-terminal .bg-209 {
1603
+ background-color: #ff875f;
1604
+ }
1605
+ .asciinema-terminal .fg-210 {
1606
+ color: #ff8787;
1607
+ }
1608
+ .asciinema-terminal .bg-210 {
1609
+ background-color: #ff8787;
1610
+ }
1611
+ .asciinema-terminal .fg-211 {
1612
+ color: #ff87af;
1613
+ }
1614
+ .asciinema-terminal .bg-211 {
1615
+ background-color: #ff87af;
1616
+ }
1617
+ .asciinema-terminal .fg-212 {
1618
+ color: #ff87d7;
1619
+ }
1620
+ .asciinema-terminal .bg-212 {
1621
+ background-color: #ff87d7;
1622
+ }
1623
+ .asciinema-terminal .fg-213 {
1624
+ color: #ff87ff;
1625
+ }
1626
+ .asciinema-terminal .bg-213 {
1627
+ background-color: #ff87ff;
1628
+ }
1629
+ .asciinema-terminal .fg-214 {
1630
+ color: #ffaf00;
1631
+ }
1632
+ .asciinema-terminal .bg-214 {
1633
+ background-color: #ffaf00;
1634
+ }
1635
+ .asciinema-terminal .fg-215 {
1636
+ color: #ffaf5f;
1637
+ }
1638
+ .asciinema-terminal .bg-215 {
1639
+ background-color: #ffaf5f;
1640
+ }
1641
+ .asciinema-terminal .fg-216 {
1642
+ color: #ffaf87;
1643
+ }
1644
+ .asciinema-terminal .bg-216 {
1645
+ background-color: #ffaf87;
1646
+ }
1647
+ .asciinema-terminal .fg-217 {
1648
+ color: #ffafaf;
1649
+ }
1650
+ .asciinema-terminal .bg-217 {
1651
+ background-color: #ffafaf;
1652
+ }
1653
+ .asciinema-terminal .fg-218 {
1654
+ color: #ffafd7;
1655
+ }
1656
+ .asciinema-terminal .bg-218 {
1657
+ background-color: #ffafd7;
1658
+ }
1659
+ .asciinema-terminal .fg-219 {
1660
+ color: #ffafff;
1661
+ }
1662
+ .asciinema-terminal .bg-219 {
1663
+ background-color: #ffafff;
1664
+ }
1665
+ .asciinema-terminal .fg-220 {
1666
+ color: #ffd700;
1667
+ }
1668
+ .asciinema-terminal .bg-220 {
1669
+ background-color: #ffd700;
1670
+ }
1671
+ .asciinema-terminal .fg-221 {
1672
+ color: #ffd75f;
1673
+ }
1674
+ .asciinema-terminal .bg-221 {
1675
+ background-color: #ffd75f;
1676
+ }
1677
+ .asciinema-terminal .fg-222 {
1678
+ color: #ffd787;
1679
+ }
1680
+ .asciinema-terminal .bg-222 {
1681
+ background-color: #ffd787;
1682
+ }
1683
+ .asciinema-terminal .fg-223 {
1684
+ color: #ffd7af;
1685
+ }
1686
+ .asciinema-terminal .bg-223 {
1687
+ background-color: #ffd7af;
1688
+ }
1689
+ .asciinema-terminal .fg-224 {
1690
+ color: #ffd7d7;
1691
+ }
1692
+ .asciinema-terminal .bg-224 {
1693
+ background-color: #ffd7d7;
1694
+ }
1695
+ .asciinema-terminal .fg-225 {
1696
+ color: #ffd7ff;
1697
+ }
1698
+ .asciinema-terminal .bg-225 {
1699
+ background-color: #ffd7ff;
1700
+ }
1701
+ .asciinema-terminal .fg-226 {
1702
+ color: #ffff00;
1703
+ }
1704
+ .asciinema-terminal .bg-226 {
1705
+ background-color: #ffff00;
1706
+ }
1707
+ .asciinema-terminal .fg-227 {
1708
+ color: #ffff5f;
1709
+ }
1710
+ .asciinema-terminal .bg-227 {
1711
+ background-color: #ffff5f;
1712
+ }
1713
+ .asciinema-terminal .fg-228 {
1714
+ color: #ffff87;
1715
+ }
1716
+ .asciinema-terminal .bg-228 {
1717
+ background-color: #ffff87;
1718
+ }
1719
+ .asciinema-terminal .fg-229 {
1720
+ color: #ffffaf;
1721
+ }
1722
+ .asciinema-terminal .bg-229 {
1723
+ background-color: #ffffaf;
1724
+ }
1725
+ .asciinema-terminal .fg-230 {
1726
+ color: #ffffd7;
1727
+ }
1728
+ .asciinema-terminal .bg-230 {
1729
+ background-color: #ffffd7;
1730
+ }
1731
+ .asciinema-terminal .fg-231 {
1732
+ color: #ffffff;
1733
+ }
1734
+ .asciinema-terminal .bg-231 {
1735
+ background-color: #ffffff;
1736
+ }
1737
+ .asciinema-terminal .fg-232 {
1738
+ color: #080808;
1739
+ }
1740
+ .asciinema-terminal .bg-232 {
1741
+ background-color: #080808;
1742
+ }
1743
+ .asciinema-terminal .fg-233 {
1744
+ color: #121212;
1745
+ }
1746
+ .asciinema-terminal .bg-233 {
1747
+ background-color: #121212;
1748
+ }
1749
+ .asciinema-terminal .fg-234 {
1750
+ color: #1c1c1c;
1751
+ }
1752
+ .asciinema-terminal .bg-234 {
1753
+ background-color: #1c1c1c;
1754
+ }
1755
+ .asciinema-terminal .fg-235 {
1756
+ color: #262626;
1757
+ }
1758
+ .asciinema-terminal .bg-235 {
1759
+ background-color: #262626;
1760
+ }
1761
+ .asciinema-terminal .fg-236 {
1762
+ color: #303030;
1763
+ }
1764
+ .asciinema-terminal .bg-236 {
1765
+ background-color: #303030;
1766
+ }
1767
+ .asciinema-terminal .fg-237 {
1768
+ color: #3a3a3a;
1769
+ }
1770
+ .asciinema-terminal .bg-237 {
1771
+ background-color: #3a3a3a;
1772
+ }
1773
+ .asciinema-terminal .fg-238 {
1774
+ color: #444444;
1775
+ }
1776
+ .asciinema-terminal .bg-238 {
1777
+ background-color: #444444;
1778
+ }
1779
+ .asciinema-terminal .fg-239 {
1780
+ color: #4e4e4e;
1781
+ }
1782
+ .asciinema-terminal .bg-239 {
1783
+ background-color: #4e4e4e;
1784
+ }
1785
+ .asciinema-terminal .fg-240 {
1786
+ color: #585858;
1787
+ }
1788
+ .asciinema-terminal .bg-240 {
1789
+ background-color: #585858;
1790
+ }
1791
+ .asciinema-terminal .fg-241 {
1792
+ color: #626262;
1793
+ }
1794
+ .asciinema-terminal .bg-241 {
1795
+ background-color: #626262;
1796
+ }
1797
+ .asciinema-terminal .fg-242 {
1798
+ color: #6c6c6c;
1799
+ }
1800
+ .asciinema-terminal .bg-242 {
1801
+ background-color: #6c6c6c;
1802
+ }
1803
+ .asciinema-terminal .fg-243 {
1804
+ color: #767676;
1805
+ }
1806
+ .asciinema-terminal .bg-243 {
1807
+ background-color: #767676;
1808
+ }
1809
+ .asciinema-terminal .fg-244 {
1810
+ color: #808080;
1811
+ }
1812
+ .asciinema-terminal .bg-244 {
1813
+ background-color: #808080;
1814
+ }
1815
+ .asciinema-terminal .fg-245 {
1816
+ color: #8a8a8a;
1817
+ }
1818
+ .asciinema-terminal .bg-245 {
1819
+ background-color: #8a8a8a;
1820
+ }
1821
+ .asciinema-terminal .fg-246 {
1822
+ color: #949494;
1823
+ }
1824
+ .asciinema-terminal .bg-246 {
1825
+ background-color: #949494;
1826
+ }
1827
+ .asciinema-terminal .fg-247 {
1828
+ color: #9e9e9e;
1829
+ }
1830
+ .asciinema-terminal .bg-247 {
1831
+ background-color: #9e9e9e;
1832
+ }
1833
+ .asciinema-terminal .fg-248 {
1834
+ color: #a8a8a8;
1835
+ }
1836
+ .asciinema-terminal .bg-248 {
1837
+ background-color: #a8a8a8;
1838
+ }
1839
+ .asciinema-terminal .fg-249 {
1840
+ color: #b2b2b2;
1841
+ }
1842
+ .asciinema-terminal .bg-249 {
1843
+ background-color: #b2b2b2;
1844
+ }
1845
+ .asciinema-terminal .fg-250 {
1846
+ color: #bcbcbc;
1847
+ }
1848
+ .asciinema-terminal .bg-250 {
1849
+ background-color: #bcbcbc;
1850
+ }
1851
+ .asciinema-terminal .fg-251 {
1852
+ color: #c6c6c6;
1853
+ }
1854
+ .asciinema-terminal .bg-251 {
1855
+ background-color: #c6c6c6;
1856
+ }
1857
+ .asciinema-terminal .fg-252 {
1858
+ color: #d0d0d0;
1859
+ }
1860
+ .asciinema-terminal .bg-252 {
1861
+ background-color: #d0d0d0;
1862
+ }
1863
+ .asciinema-terminal .fg-253 {
1864
+ color: #dadada;
1865
+ }
1866
+ .asciinema-terminal .bg-253 {
1867
+ background-color: #dadada;
1868
+ }
1869
+ .asciinema-terminal .fg-254 {
1870
+ color: #e4e4e4;
1871
+ }
1872
+ .asciinema-terminal .bg-254 {
1873
+ background-color: #e4e4e4;
1874
+ }
1875
+ .asciinema-terminal .fg-255 {
1876
+ color: #eeeeee;
1877
+ }
1878
+ .asciinema-terminal .bg-255 {
1879
+ background-color: #eeeeee;
1880
+ }
1881
+ .asciinema-theme-asciinema .asciinema-terminal {
1882
+ color: #cccccc;
1883
+ background-color: #121314;
1884
+ border-color: #121314;
1885
+ }
1886
+ .asciinema-theme-asciinema .fg-bg {
1887
+ color: #121314;
1888
+ }
1889
+ .asciinema-theme-asciinema .bg-fg {
1890
+ background-color: #cccccc;
1891
+ }
1892
+ .asciinema-theme-asciinema .fg-0 {
1893
+ color: #000000;
1894
+ }
1895
+ .asciinema-theme-asciinema .bg-0 {
1896
+ background-color: #000000;
1897
+ }
1898
+ .asciinema-theme-asciinema .fg-1 {
1899
+ color: #dd3c69;
1900
+ }
1901
+ .asciinema-theme-asciinema .bg-1 {
1902
+ background-color: #dd3c69;
1903
+ }
1904
+ .asciinema-theme-asciinema .fg-2 {
1905
+ color: #4ebf22;
1906
+ }
1907
+ .asciinema-theme-asciinema .bg-2 {
1908
+ background-color: #4ebf22;
1909
+ }
1910
+ .asciinema-theme-asciinema .fg-3 {
1911
+ color: #ddaf3c;
1912
+ }
1913
+ .asciinema-theme-asciinema .bg-3 {
1914
+ background-color: #ddaf3c;
1915
+ }
1916
+ .asciinema-theme-asciinema .fg-4 {
1917
+ color: #26b0d7;
1918
+ }
1919
+ .asciinema-theme-asciinema .bg-4 {
1920
+ background-color: #26b0d7;
1921
+ }
1922
+ .asciinema-theme-asciinema .fg-5 {
1923
+ color: #b954e1;
1924
+ }
1925
+ .asciinema-theme-asciinema .bg-5 {
1926
+ background-color: #b954e1;
1927
+ }
1928
+ .asciinema-theme-asciinema .fg-6 {
1929
+ color: #54e1b9;
1930
+ }
1931
+ .asciinema-theme-asciinema .bg-6 {
1932
+ background-color: #54e1b9;
1933
+ }
1934
+ .asciinema-theme-asciinema .fg-7 {
1935
+ color: #d9d9d9;
1936
+ }
1937
+ .asciinema-theme-asciinema .bg-7 {
1938
+ background-color: #d9d9d9;
1939
+ }
1940
+ .asciinema-theme-asciinema .fg-8 {
1941
+ color: #4d4d4d;
1942
+ }
1943
+ .asciinema-theme-asciinema .bg-8 {
1944
+ background-color: #4d4d4d;
1945
+ }
1946
+ .asciinema-theme-asciinema .fg-9 {
1947
+ color: #dd3c69;
1948
+ }
1949
+ .asciinema-theme-asciinema .bg-9 {
1950
+ background-color: #dd3c69;
1951
+ }
1952
+ .asciinema-theme-asciinema .fg-10 {
1953
+ color: #4ebf22;
1954
+ }
1955
+ .asciinema-theme-asciinema .bg-10 {
1956
+ background-color: #4ebf22;
1957
+ }
1958
+ .asciinema-theme-asciinema .fg-11 {
1959
+ color: #ddaf3c;
1960
+ }
1961
+ .asciinema-theme-asciinema .bg-11 {
1962
+ background-color: #ddaf3c;
1963
+ }
1964
+ .asciinema-theme-asciinema .fg-12 {
1965
+ color: #26b0d7;
1966
+ }
1967
+ .asciinema-theme-asciinema .bg-12 {
1968
+ background-color: #26b0d7;
1969
+ }
1970
+ .asciinema-theme-asciinema .fg-13 {
1971
+ color: #b954e1;
1972
+ }
1973
+ .asciinema-theme-asciinema .bg-13 {
1974
+ background-color: #b954e1;
1975
+ }
1976
+ .asciinema-theme-asciinema .fg-14 {
1977
+ color: #54e1b9;
1978
+ }
1979
+ .asciinema-theme-asciinema .bg-14 {
1980
+ background-color: #54e1b9;
1981
+ }
1982
+ .asciinema-theme-asciinema .fg-15 {
1983
+ color: #ffffff;
1984
+ }
1985
+ .asciinema-theme-asciinema .bg-15 {
1986
+ background-color: #ffffff;
1987
+ }
1988
+ .asciinema-theme-asciinema .fg-8,
1989
+ .asciinema-theme-asciinema .fg-9,
1990
+ .asciinema-theme-asciinema .fg-10,
1991
+ .asciinema-theme-asciinema .fg-11,
1992
+ .asciinema-theme-asciinema .fg-12,
1993
+ .asciinema-theme-asciinema .fg-13,
1994
+ .asciinema-theme-asciinema .fg-14,
1995
+ .asciinema-theme-asciinema .fg-15 {
1996
+ font-weight: bold;
1997
+ }
1998
+ .asciinema-theme-tango .asciinema-terminal {
1999
+ color: #cccccc;
2000
+ background-color: #121314;
2001
+ border-color: #121314;
2002
+ }
2003
+ .asciinema-theme-tango .fg-bg {
2004
+ color: #121314;
2005
+ }
2006
+ .asciinema-theme-tango .bg-fg {
2007
+ background-color: #cccccc;
2008
+ }
2009
+ .asciinema-theme-tango .fg-0 {
2010
+ color: #000000;
2011
+ }
2012
+ .asciinema-theme-tango .bg-0 {
2013
+ background-color: #000000;
2014
+ }
2015
+ .asciinema-theme-tango .fg-1 {
2016
+ color: #cc0000;
2017
+ }
2018
+ .asciinema-theme-tango .bg-1 {
2019
+ background-color: #cc0000;
2020
+ }
2021
+ .asciinema-theme-tango .fg-2 {
2022
+ color: #4e9a06;
2023
+ }
2024
+ .asciinema-theme-tango .bg-2 {
2025
+ background-color: #4e9a06;
2026
+ }
2027
+ .asciinema-theme-tango .fg-3 {
2028
+ color: #c4a000;
2029
+ }
2030
+ .asciinema-theme-tango .bg-3 {
2031
+ background-color: #c4a000;
2032
+ }
2033
+ .asciinema-theme-tango .fg-4 {
2034
+ color: #3465a4;
2035
+ }
2036
+ .asciinema-theme-tango .bg-4 {
2037
+ background-color: #3465a4;
2038
+ }
2039
+ .asciinema-theme-tango .fg-5 {
2040
+ color: #75507b;
2041
+ }
2042
+ .asciinema-theme-tango .bg-5 {
2043
+ background-color: #75507b;
2044
+ }
2045
+ .asciinema-theme-tango .fg-6 {
2046
+ color: #06989a;
2047
+ }
2048
+ .asciinema-theme-tango .bg-6 {
2049
+ background-color: #06989a;
2050
+ }
2051
+ .asciinema-theme-tango .fg-7 {
2052
+ color: #d3d7cf;
2053
+ }
2054
+ .asciinema-theme-tango .bg-7 {
2055
+ background-color: #d3d7cf;
2056
+ }
2057
+ .asciinema-theme-tango .fg-8 {
2058
+ color: #555753;
2059
+ }
2060
+ .asciinema-theme-tango .bg-8 {
2061
+ background-color: #555753;
2062
+ }
2063
+ .asciinema-theme-tango .fg-9 {
2064
+ color: #ef2929;
2065
+ }
2066
+ .asciinema-theme-tango .bg-9 {
2067
+ background-color: #ef2929;
2068
+ }
2069
+ .asciinema-theme-tango .fg-10 {
2070
+ color: #8ae234;
2071
+ }
2072
+ .asciinema-theme-tango .bg-10 {
2073
+ background-color: #8ae234;
2074
+ }
2075
+ .asciinema-theme-tango .fg-11 {
2076
+ color: #fce94f;
2077
+ }
2078
+ .asciinema-theme-tango .bg-11 {
2079
+ background-color: #fce94f;
2080
+ }
2081
+ .asciinema-theme-tango .fg-12 {
2082
+ color: #729fcf;
2083
+ }
2084
+ .asciinema-theme-tango .bg-12 {
2085
+ background-color: #729fcf;
2086
+ }
2087
+ .asciinema-theme-tango .fg-13 {
2088
+ color: #ad7fa8;
2089
+ }
2090
+ .asciinema-theme-tango .bg-13 {
2091
+ background-color: #ad7fa8;
2092
+ }
2093
+ .asciinema-theme-tango .fg-14 {
2094
+ color: #34e2e2;
2095
+ }
2096
+ .asciinema-theme-tango .bg-14 {
2097
+ background-color: #34e2e2;
2098
+ }
2099
+ .asciinema-theme-tango .fg-15 {
2100
+ color: #eeeeec;
2101
+ }
2102
+ .asciinema-theme-tango .bg-15 {
2103
+ background-color: #eeeeec;
2104
+ }
2105
+ .asciinema-theme-tango .fg-8,
2106
+ .asciinema-theme-tango .fg-9,
2107
+ .asciinema-theme-tango .fg-10,
2108
+ .asciinema-theme-tango .fg-11,
2109
+ .asciinema-theme-tango .fg-12,
2110
+ .asciinema-theme-tango .fg-13,
2111
+ .asciinema-theme-tango .fg-14,
2112
+ .asciinema-theme-tango .fg-15 {
2113
+ font-weight: bold;
2114
+ }
2115
+ .asciinema-theme-solarized-dark .asciinema-terminal {
2116
+ color: #839496;
2117
+ background-color: #002b36;
2118
+ border-color: #002b36;
2119
+ }
2120
+ .asciinema-theme-solarized-dark .fg-bg {
2121
+ color: #002b36;
2122
+ }
2123
+ .asciinema-theme-solarized-dark .bg-fg {
2124
+ background-color: #839496;
2125
+ }
2126
+ .asciinema-theme-solarized-dark .fg-0 {
2127
+ color: #073642;
2128
+ }
2129
+ .asciinema-theme-solarized-dark .bg-0 {
2130
+ background-color: #073642;
2131
+ }
2132
+ .asciinema-theme-solarized-dark .fg-1 {
2133
+ color: #dc322f;
2134
+ }
2135
+ .asciinema-theme-solarized-dark .bg-1 {
2136
+ background-color: #dc322f;
2137
+ }
2138
+ .asciinema-theme-solarized-dark .fg-2 {
2139
+ color: #859900;
2140
+ }
2141
+ .asciinema-theme-solarized-dark .bg-2 {
2142
+ background-color: #859900;
2143
+ }
2144
+ .asciinema-theme-solarized-dark .fg-3 {
2145
+ color: #b58900;
2146
+ }
2147
+ .asciinema-theme-solarized-dark .bg-3 {
2148
+ background-color: #b58900;
2149
+ }
2150
+ .asciinema-theme-solarized-dark .fg-4 {
2151
+ color: #268bd2;
2152
+ }
2153
+ .asciinema-theme-solarized-dark .bg-4 {
2154
+ background-color: #268bd2;
2155
+ }
2156
+ .asciinema-theme-solarized-dark .fg-5 {
2157
+ color: #d33682;
2158
+ }
2159
+ .asciinema-theme-solarized-dark .bg-5 {
2160
+ background-color: #d33682;
2161
+ }
2162
+ .asciinema-theme-solarized-dark .fg-6 {
2163
+ color: #2aa198;
2164
+ }
2165
+ .asciinema-theme-solarized-dark .bg-6 {
2166
+ background-color: #2aa198;
2167
+ }
2168
+ .asciinema-theme-solarized-dark .fg-7 {
2169
+ color: #eee8d5;
2170
+ }
2171
+ .asciinema-theme-solarized-dark .bg-7 {
2172
+ background-color: #eee8d5;
2173
+ }
2174
+ .asciinema-theme-solarized-dark .fg-8 {
2175
+ color: #002b36;
2176
+ }
2177
+ .asciinema-theme-solarized-dark .bg-8 {
2178
+ background-color: #002b36;
2179
+ }
2180
+ .asciinema-theme-solarized-dark .fg-9 {
2181
+ color: #cb4b16;
2182
+ }
2183
+ .asciinema-theme-solarized-dark .bg-9 {
2184
+ background-color: #cb4b16;
2185
+ }
2186
+ .asciinema-theme-solarized-dark .fg-10 {
2187
+ color: #586e75;
2188
+ }
2189
+ .asciinema-theme-solarized-dark .bg-10 {
2190
+ background-color: #586e75;
2191
+ }
2192
+ .asciinema-theme-solarized-dark .fg-11 {
2193
+ color: #657b83;
2194
+ }
2195
+ .asciinema-theme-solarized-dark .bg-11 {
2196
+ background-color: #657b83;
2197
+ }
2198
+ .asciinema-theme-solarized-dark .fg-12 {
2199
+ color: #839496;
2200
+ }
2201
+ .asciinema-theme-solarized-dark .bg-12 {
2202
+ background-color: #839496;
2203
+ }
2204
+ .asciinema-theme-solarized-dark .fg-13 {
2205
+ color: #6c71c4;
2206
+ }
2207
+ .asciinema-theme-solarized-dark .bg-13 {
2208
+ background-color: #6c71c4;
2209
+ }
2210
+ .asciinema-theme-solarized-dark .fg-14 {
2211
+ color: #93a1a1;
2212
+ }
2213
+ .asciinema-theme-solarized-dark .bg-14 {
2214
+ background-color: #93a1a1;
2215
+ }
2216
+ .asciinema-theme-solarized-dark .fg-15 {
2217
+ color: #fdf6e3;
2218
+ }
2219
+ .asciinema-theme-solarized-dark .bg-15 {
2220
+ background-color: #fdf6e3;
2221
+ }
2222
+ .asciinema-theme-solarized-light .asciinema-terminal {
2223
+ color: #657b83;
2224
+ background-color: #fdf6e3;
2225
+ border-color: #fdf6e3;
2226
+ }
2227
+ .asciinema-theme-solarized-light .fg-bg {
2228
+ color: #fdf6e3;
2229
+ }
2230
+ .asciinema-theme-solarized-light .bg-fg {
2231
+ background-color: #657b83;
2232
+ }
2233
+ .asciinema-theme-solarized-light .fg-0 {
2234
+ color: #073642;
2235
+ }
2236
+ .asciinema-theme-solarized-light .bg-0 {
2237
+ background-color: #073642;
2238
+ }
2239
+ .asciinema-theme-solarized-light .fg-1 {
2240
+ color: #dc322f;
2241
+ }
2242
+ .asciinema-theme-solarized-light .bg-1 {
2243
+ background-color: #dc322f;
2244
+ }
2245
+ .asciinema-theme-solarized-light .fg-2 {
2246
+ color: #859900;
2247
+ }
2248
+ .asciinema-theme-solarized-light .bg-2 {
2249
+ background-color: #859900;
2250
+ }
2251
+ .asciinema-theme-solarized-light .fg-3 {
2252
+ color: #b58900;
2253
+ }
2254
+ .asciinema-theme-solarized-light .bg-3 {
2255
+ background-color: #b58900;
2256
+ }
2257
+ .asciinema-theme-solarized-light .fg-4 {
2258
+ color: #268bd2;
2259
+ }
2260
+ .asciinema-theme-solarized-light .bg-4 {
2261
+ background-color: #268bd2;
2262
+ }
2263
+ .asciinema-theme-solarized-light .fg-5 {
2264
+ color: #d33682;
2265
+ }
2266
+ .asciinema-theme-solarized-light .bg-5 {
2267
+ background-color: #d33682;
2268
+ }
2269
+ .asciinema-theme-solarized-light .fg-6 {
2270
+ color: #2aa198;
2271
+ }
2272
+ .asciinema-theme-solarized-light .bg-6 {
2273
+ background-color: #2aa198;
2274
+ }
2275
+ .asciinema-theme-solarized-light .fg-7 {
2276
+ color: #eee8d5;
2277
+ }
2278
+ .asciinema-theme-solarized-light .bg-7 {
2279
+ background-color: #eee8d5;
2280
+ }
2281
+ .asciinema-theme-solarized-light .fg-8 {
2282
+ color: #002b36;
2283
+ }
2284
+ .asciinema-theme-solarized-light .bg-8 {
2285
+ background-color: #002b36;
2286
+ }
2287
+ .asciinema-theme-solarized-light .fg-9 {
2288
+ color: #cb4b16;
2289
+ }
2290
+ .asciinema-theme-solarized-light .bg-9 {
2291
+ background-color: #cb4b16;
2292
+ }
2293
+ .asciinema-theme-solarized-light .fg-10 {
2294
+ color: #586e75;
2295
+ }
2296
+ .asciinema-theme-solarized-light .bg-10 {
2297
+ background-color: #586e75;
2298
+ }
2299
+ .asciinema-theme-solarized-light .fg-11 {
2300
+ color: #657c83;
2301
+ }
2302
+ .asciinema-theme-solarized-light .bg-11 {
2303
+ background-color: #657c83;
2304
+ }
2305
+ .asciinema-theme-solarized-light .fg-12 {
2306
+ color: #839496;
2307
+ }
2308
+ .asciinema-theme-solarized-light .bg-12 {
2309
+ background-color: #839496;
2310
+ }
2311
+ .asciinema-theme-solarized-light .fg-13 {
2312
+ color: #6c71c4;
2313
+ }
2314
+ .asciinema-theme-solarized-light .bg-13 {
2315
+ background-color: #6c71c4;
2316
+ }
2317
+ .asciinema-theme-solarized-light .fg-14 {
2318
+ color: #93a1a1;
2319
+ }
2320
+ .asciinema-theme-solarized-light .bg-14 {
2321
+ background-color: #93a1a1;
2322
+ }
2323
+ .asciinema-theme-solarized-light .fg-15 {
2324
+ color: #fdf6e3;
2325
+ }
2326
+ .asciinema-theme-solarized-light .bg-15 {
2327
+ background-color: #fdf6e3;
2328
+ }
2329
+ .asciinema-theme-seti .asciinema-terminal {
2330
+ color: #cacecd;
2331
+ background-color: #111213;
2332
+ border-color: #111213;
2333
+ }
2334
+ .asciinema-theme-seti .fg-bg {
2335
+ color: #111213;
2336
+ }
2337
+ .asciinema-theme-seti .bg-fg {
2338
+ background-color: #cacecd;
2339
+ }
2340
+ .asciinema-theme-seti .fg-0 {
2341
+ color: #323232;
2342
+ }
2343
+ .asciinema-theme-seti .bg-0 {
2344
+ background-color: #323232;
2345
+ }
2346
+ .asciinema-theme-seti .fg-1 {
2347
+ color: #c22832;
2348
+ }
2349
+ .asciinema-theme-seti .bg-1 {
2350
+ background-color: #c22832;
2351
+ }
2352
+ .asciinema-theme-seti .fg-2 {
2353
+ color: #8ec43d;
2354
+ }
2355
+ .asciinema-theme-seti .bg-2 {
2356
+ background-color: #8ec43d;
2357
+ }
2358
+ .asciinema-theme-seti .fg-3 {
2359
+ color: #e0c64f;
2360
+ }
2361
+ .asciinema-theme-seti .bg-3 {
2362
+ background-color: #e0c64f;
2363
+ }
2364
+ .asciinema-theme-seti .fg-4 {
2365
+ color: #43a5d5;
2366
+ }
2367
+ .asciinema-theme-seti .bg-4 {
2368
+ background-color: #43a5d5;
2369
+ }
2370
+ .asciinema-theme-seti .fg-5 {
2371
+ color: #8b57b5;
2372
+ }
2373
+ .asciinema-theme-seti .bg-5 {
2374
+ background-color: #8b57b5;
2375
+ }
2376
+ .asciinema-theme-seti .fg-6 {
2377
+ color: #8ec43d;
2378
+ }
2379
+ .asciinema-theme-seti .bg-6 {
2380
+ background-color: #8ec43d;
2381
+ }
2382
+ .asciinema-theme-seti .fg-7 {
2383
+ color: #eeeeee;
2384
+ }
2385
+ .asciinema-theme-seti .bg-7 {
2386
+ background-color: #eeeeee;
2387
+ }
2388
+ .asciinema-theme-seti .fg-8 {
2389
+ color: #323232;
2390
+ }
2391
+ .asciinema-theme-seti .bg-8 {
2392
+ background-color: #323232;
2393
+ }
2394
+ .asciinema-theme-seti .fg-9 {
2395
+ color: #c22832;
2396
+ }
2397
+ .asciinema-theme-seti .bg-9 {
2398
+ background-color: #c22832;
2399
+ }
2400
+ .asciinema-theme-seti .fg-10 {
2401
+ color: #8ec43d;
2402
+ }
2403
+ .asciinema-theme-seti .bg-10 {
2404
+ background-color: #8ec43d;
2405
+ }
2406
+ .asciinema-theme-seti .fg-11 {
2407
+ color: #e0c64f;
2408
+ }
2409
+ .asciinema-theme-seti .bg-11 {
2410
+ background-color: #e0c64f;
2411
+ }
2412
+ .asciinema-theme-seti .fg-12 {
2413
+ color: #43a5d5;
2414
+ }
2415
+ .asciinema-theme-seti .bg-12 {
2416
+ background-color: #43a5d5;
2417
+ }
2418
+ .asciinema-theme-seti .fg-13 {
2419
+ color: #8b57b5;
2420
+ }
2421
+ .asciinema-theme-seti .bg-13 {
2422
+ background-color: #8b57b5;
2423
+ }
2424
+ .asciinema-theme-seti .fg-14 {
2425
+ color: #8ec43d;
2426
+ }
2427
+ .asciinema-theme-seti .bg-14 {
2428
+ background-color: #8ec43d;
2429
+ }
2430
+ .asciinema-theme-seti .fg-15 {
2431
+ color: #ffffff;
2432
+ }
2433
+ .asciinema-theme-seti .bg-15 {
2434
+ background-color: #ffffff;
2435
+ }
2436
+ .asciinema-theme-seti .fg-8,
2437
+ .asciinema-theme-seti .fg-9,
2438
+ .asciinema-theme-seti .fg-10,
2439
+ .asciinema-theme-seti .fg-11,
2440
+ .asciinema-theme-seti .fg-12,
2441
+ .asciinema-theme-seti .fg-13,
2442
+ .asciinema-theme-seti .fg-14,
2443
+ .asciinema-theme-seti .fg-15 {
2444
+ font-weight: bold;
2445
+ }
2446
+ /* Based on Monokai from base16 collection - https://github.com/chriskempson/base16 */
2447
+ .asciinema-theme-monokai .asciinema-terminal {
2448
+ color: #f8f8f2;
2449
+ background-color: #272822;
2450
+ border-color: #272822;
2451
+ }
2452
+ .asciinema-theme-monokai .fg-bg {
2453
+ color: #272822;
2454
+ }
2455
+ .asciinema-theme-monokai .bg-fg {
2456
+ background-color: #f8f8f2;
2457
+ }
2458
+ .asciinema-theme-monokai .fg-0 {
2459
+ color: #272822;
2460
+ }
2461
+ .asciinema-theme-monokai .bg-0 {
2462
+ background-color: #272822;
2463
+ }
2464
+ .asciinema-theme-monokai .fg-1 {
2465
+ color: #f92672;
2466
+ }
2467
+ .asciinema-theme-monokai .bg-1 {
2468
+ background-color: #f92672;
2469
+ }
2470
+ .asciinema-theme-monokai .fg-2 {
2471
+ color: #a6e22e;
2472
+ }
2473
+ .asciinema-theme-monokai .bg-2 {
2474
+ background-color: #a6e22e;
2475
+ }
2476
+ .asciinema-theme-monokai .fg-3 {
2477
+ color: #f4bf75;
2478
+ }
2479
+ .asciinema-theme-monokai .bg-3 {
2480
+ background-color: #f4bf75;
2481
+ }
2482
+ .asciinema-theme-monokai .fg-4 {
2483
+ color: #66d9ef;
2484
+ }
2485
+ .asciinema-theme-monokai .bg-4 {
2486
+ background-color: #66d9ef;
2487
+ }
2488
+ .asciinema-theme-monokai .fg-5 {
2489
+ color: #ae81ff;
2490
+ }
2491
+ .asciinema-theme-monokai .bg-5 {
2492
+ background-color: #ae81ff;
2493
+ }
2494
+ .asciinema-theme-monokai .fg-6 {
2495
+ color: #a1efe4;
2496
+ }
2497
+ .asciinema-theme-monokai .bg-6 {
2498
+ background-color: #a1efe4;
2499
+ }
2500
+ .asciinema-theme-monokai .fg-7 {
2501
+ color: #f8f8f2;
2502
+ }
2503
+ .asciinema-theme-monokai .bg-7 {
2504
+ background-color: #f8f8f2;
2505
+ }
2506
+ .asciinema-theme-monokai .fg-8 {
2507
+ color: #75715e;
2508
+ }
2509
+ .asciinema-theme-monokai .bg-8 {
2510
+ background-color: #75715e;
2511
+ }
2512
+ .asciinema-theme-monokai .fg-9 {
2513
+ color: #f92672;
2514
+ }
2515
+ .asciinema-theme-monokai .bg-9 {
2516
+ background-color: #f92672;
2517
+ }
2518
+ .asciinema-theme-monokai .fg-10 {
2519
+ color: #a6e22e;
2520
+ }
2521
+ .asciinema-theme-monokai .bg-10 {
2522
+ background-color: #a6e22e;
2523
+ }
2524
+ .asciinema-theme-monokai .fg-11 {
2525
+ color: #f4bf75;
2526
+ }
2527
+ .asciinema-theme-monokai .bg-11 {
2528
+ background-color: #f4bf75;
2529
+ }
2530
+ .asciinema-theme-monokai .fg-12 {
2531
+ color: #66d9ef;
2532
+ }
2533
+ .asciinema-theme-monokai .bg-12 {
2534
+ background-color: #66d9ef;
2535
+ }
2536
+ .asciinema-theme-monokai .fg-13 {
2537
+ color: #ae81ff;
2538
+ }
2539
+ .asciinema-theme-monokai .bg-13 {
2540
+ background-color: #ae81ff;
2541
+ }
2542
+ .asciinema-theme-monokai .fg-14 {
2543
+ color: #a1efe4;
2544
+ }
2545
+ .asciinema-theme-monokai .bg-14 {
2546
+ background-color: #a1efe4;
2547
+ }
2548
+ .asciinema-theme-monokai .fg-15 {
2549
+ color: #f9f8f5;
2550
+ }
2551
+ .asciinema-theme-monokai .bg-15 {
2552
+ background-color: #f9f8f5;
2553
+ }
2554
+ .asciinema-theme-monokai .fg-8,
2555
+ .asciinema-theme-monokai .fg-9,
2556
+ .asciinema-theme-monokai .fg-10,
2557
+ .asciinema-theme-monokai .fg-11,
2558
+ .asciinema-theme-monokai .fg-12,
2559
+ .asciinema-theme-monokai .fg-13,
2560
+ .asciinema-theme-monokai .fg-14,
2561
+ .asciinema-theme-monokai .fg-15 {
2562
+ font-weight: bold;
2563
+ }