]> git.proxmox.com Git - mirror_xterm.js.git/blob - src/xterm.css
Add a comment
[mirror_xterm.js.git] / src / xterm.css
1 /**
2 * xterm.js: xterm, in the browser
3 * Copyright (c) 2014-2016, SourceLair Private Company (www.sourcelair.com (MIT License)
4 * Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
5 * https://github.com/chjj/term.js
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 *
25 * Originally forked from (with the author's permission):
26 * Fabrice Bellard's javascript vt100 for jslinux:
27 * http://bellard.org/jslinux/
28 * Copyright (c) 2011 Fabrice Bellard
29 * The original design remains. The terminal itself
30 * has been extended to include xterm CSI codes, among
31 * other features.
32 */
33
34 /*
35 * Default style for xterm.js
36 */
37
38 .terminal {
39 background-color: #000;
40 color: #fff;
41 font-family: courier-new, courier, monospace;
42 font-feature-settings: "liga" 0;
43 position: relative;
44 user-select: none;
45 -ms-user-select: none;
46 -webkit-user-select: none;
47 }
48
49 .terminal.focus,
50 .terminal:focus {
51 outline: none;
52 }
53
54 .terminal .xterm-helpers {
55 position: absolute;
56 top: 0;
57 }
58
59 .terminal .xterm-helper-textarea {
60 /*
61 * HACK: to fix IE's blinking cursor
62 * Move textarea out of the screen to the far left, so that the cursor is not visible.
63 */
64 position: absolute;
65 opacity: 0;
66 left: -9999em;
67 top: 0;
68 width: 0;
69 height: 0;
70 z-index: -10;
71 /** Prevent wrapping so the IME appears against the textarea at the correct position */
72 white-space: nowrap;
73 overflow: hidden;
74 resize: none;
75 }
76
77 .terminal a {
78 color: inherit;
79 text-decoration: none;
80 }
81
82 .terminal a:hover {
83 cursor: pointer;
84 text-decoration: underline;
85 }
86
87 .terminal a.xterm-invalid-link:hover {
88 cursor: text;
89 text-decoration: none;
90 }
91
92 .terminal.focus:not(.xterm-cursor-style-underline):not(.xterm-cursor-style-bar) .terminal-cursor {
93 background-color: #fff;
94 color: #000;
95 }
96
97 .terminal:not(.focus) .terminal-cursor {
98 outline: 1px solid #fff;
99 outline-offset: -1px;
100 background-color: transparent;
101 }
102
103 .terminal:not(.xterm-cursor-style-underline):not(.xterm-cursor-style-bar).focus.xterm-cursor-blink-on .terminal-cursor {
104 background-color: transparent;
105 color: inherit;
106 }
107
108 .terminal.xterm-cursor-style-bar .terminal-cursor,
109 .terminal.xterm-cursor-style-underline .terminal-cursor {
110 position: relative;
111 }
112 .terminal.xterm-cursor-style-bar .terminal-cursor::before,
113 .terminal.xterm-cursor-style-underline .terminal-cursor::before {
114 content: "";
115 display: block;
116 position: absolute;
117 background-color: #fff;
118 }
119 .terminal.xterm-cursor-style-bar .terminal-cursor::before {
120 top: 0;
121 bottom: 0;
122 left: 0;
123 width: 1px;
124 }
125 .terminal.xterm-cursor-style-underline .terminal-cursor::before {
126 bottom: 0;
127 left: 0;
128 right: 0;
129 height: 1px;
130 }
131 .terminal.xterm-cursor-style-bar.focus.xterm-cursor-blink.xterm-cursor-blink-on .terminal-cursor::before,
132 .terminal.xterm-cursor-style-underline.focus.xterm-cursor-blink.xterm-cursor-blink-on .terminal-cursor::before {
133 background-color: transparent;
134 }
135 .terminal.xterm-cursor-style-bar.focus.xterm-cursor-blink .terminal-cursor::before,
136 .terminal.xterm-cursor-style-underline.focus.xterm-cursor-blink .terminal-cursor::before {
137 background-color: #fff;
138 }
139
140 .terminal .composition-view {
141 background: #000;
142 color: #FFF;
143 display: none;
144 position: absolute;
145 white-space: nowrap;
146 z-index: 1;
147 }
148
149 .terminal .composition-view.active {
150 display: block;
151 }
152
153 .terminal .xterm-viewport {
154 /* On OS X this is required in order for the scroll bar to appear fully opaque */
155 background-color: #000;
156 overflow-y: scroll;
157 }
158
159 .terminal .xterm-wide-char,
160 .terminal .xterm-normal-char {
161 display: inline-block;
162 }
163
164 .terminal .xterm-rows {
165 position: absolute;
166 left: 0;
167 top: 0;
168 }
169
170 .terminal .xterm-rows > div {
171 /* Lines containing spans and text nodes ocassionally wrap despite being the same width (#327) */
172 white-space: nowrap;
173 }
174
175 .terminal .xterm-scroll-area {
176 visibility: hidden;
177 }
178
179 .terminal .xterm-char-measure-element {
180 display: inline-block;
181 visibility: hidden;
182 position: absolute;
183 left: -9999em;
184 }
185
186 .terminal.enable-mouse-events {
187 /* When mouse events are enabled (eg. tmux), revert to the standard pointer cursor */
188 cursor: default;
189 }
190
191 .terminal .xterm-selection {
192 position: absolute;
193 top: 0;
194 left: 0;
195 }
196
197 .terminal .xterm-selection div {
198 position: absolute;
199 background-color: #555;
200 }
201
202 /*
203 * Determine default colors for xterm.js
204 */
205 .terminal .xterm-bold {
206 font-weight: bold;
207 }
208
209 .terminal .xterm-underline {
210 text-decoration: underline;
211 }
212
213 .terminal .xterm-blink {
214 text-decoration: blink;
215 }
216
217 .terminal .xterm-hidden {
218 visibility: hidden;
219 }
220
221 .terminal .xterm-color-0 {
222 color: #2e3436;
223 }
224
225 .terminal .xterm-bg-color-0 {
226 background-color: #2e3436;
227 }
228
229 .terminal .xterm-color-1 {
230 color: #cc0000;
231 }
232
233 .terminal .xterm-bg-color-1 {
234 background-color: #cc0000;
235 }
236
237 .terminal .xterm-color-2 {
238 color: #4e9a06;
239 }
240
241 .terminal .xterm-bg-color-2 {
242 background-color: #4e9a06;
243 }
244
245 .terminal .xterm-color-3 {
246 color: #c4a000;
247 }
248
249 .terminal .xterm-bg-color-3 {
250 background-color: #c4a000;
251 }
252
253 .terminal .xterm-color-4 {
254 color: #3465a4;
255 }
256
257 .terminal .xterm-bg-color-4 {
258 background-color: #3465a4;
259 }
260
261 .terminal .xterm-color-5 {
262 color: #75507b;
263 }
264
265 .terminal .xterm-bg-color-5 {
266 background-color: #75507b;
267 }
268
269 .terminal .xterm-color-6 {
270 color: #06989a;
271 }
272
273 .terminal .xterm-bg-color-6 {
274 background-color: #06989a;
275 }
276
277 .terminal .xterm-color-7 {
278 color: #d3d7cf;
279 }
280
281 .terminal .xterm-bg-color-7 {
282 background-color: #d3d7cf;
283 }
284
285 .terminal .xterm-color-8 {
286 color: #555753;
287 }
288
289 .terminal .xterm-bg-color-8 {
290 background-color: #555753;
291 }
292
293 .terminal .xterm-color-9 {
294 color: #ef2929;
295 }
296
297 .terminal .xterm-bg-color-9 {
298 background-color: #ef2929;
299 }
300
301 .terminal .xterm-color-10 {
302 color: #8ae234;
303 }
304
305 .terminal .xterm-bg-color-10 {
306 background-color: #8ae234;
307 }
308
309 .terminal .xterm-color-11 {
310 color: #fce94f;
311 }
312
313 .terminal .xterm-bg-color-11 {
314 background-color: #fce94f;
315 }
316
317 .terminal .xterm-color-12 {
318 color: #729fcf;
319 }
320
321 .terminal .xterm-bg-color-12 {
322 background-color: #729fcf;
323 }
324
325 .terminal .xterm-color-13 {
326 color: #ad7fa8;
327 }
328
329 .terminal .xterm-bg-color-13 {
330 background-color: #ad7fa8;
331 }
332
333 .terminal .xterm-color-14 {
334 color: #34e2e2;
335 }
336
337 .terminal .xterm-bg-color-14 {
338 background-color: #34e2e2;
339 }
340
341 .terminal .xterm-color-15 {
342 color: #eeeeec;
343 }
344
345 .terminal .xterm-bg-color-15 {
346 background-color: #eeeeec;
347 }
348
349 .terminal .xterm-color-16 {
350 color: #000000;
351 }
352
353 .terminal .xterm-bg-color-16 {
354 background-color: #000000;
355 }
356
357 .terminal .xterm-color-17 {
358 color: #00005f;
359 }
360
361 .terminal .xterm-bg-color-17 {
362 background-color: #00005f;
363 }
364
365 .terminal .xterm-color-18 {
366 color: #000087;
367 }
368
369 .terminal .xterm-bg-color-18 {
370 background-color: #000087;
371 }
372
373 .terminal .xterm-color-19 {
374 color: #0000af;
375 }
376
377 .terminal .xterm-bg-color-19 {
378 background-color: #0000af;
379 }
380
381 .terminal .xterm-color-20 {
382 color: #0000d7;
383 }
384
385 .terminal .xterm-bg-color-20 {
386 background-color: #0000d7;
387 }
388
389 .terminal .xterm-color-21 {
390 color: #0000ff;
391 }
392
393 .terminal .xterm-bg-color-21 {
394 background-color: #0000ff;
395 }
396
397 .terminal .xterm-color-22 {
398 color: #005f00;
399 }
400
401 .terminal .xterm-bg-color-22 {
402 background-color: #005f00;
403 }
404
405 .terminal .xterm-color-23 {
406 color: #005f5f;
407 }
408
409 .terminal .xterm-bg-color-23 {
410 background-color: #005f5f;
411 }
412
413 .terminal .xterm-color-24 {
414 color: #005f87;
415 }
416
417 .terminal .xterm-bg-color-24 {
418 background-color: #005f87;
419 }
420
421 .terminal .xterm-color-25 {
422 color: #005faf;
423 }
424
425 .terminal .xterm-bg-color-25 {
426 background-color: #005faf;
427 }
428
429 .terminal .xterm-color-26 {
430 color: #005fd7;
431 }
432
433 .terminal .xterm-bg-color-26 {
434 background-color: #005fd7;
435 }
436
437 .terminal .xterm-color-27 {
438 color: #005fff;
439 }
440
441 .terminal .xterm-bg-color-27 {
442 background-color: #005fff;
443 }
444
445 .terminal .xterm-color-28 {
446 color: #008700;
447 }
448
449 .terminal .xterm-bg-color-28 {
450 background-color: #008700;
451 }
452
453 .terminal .xterm-color-29 {
454 color: #00875f;
455 }
456
457 .terminal .xterm-bg-color-29 {
458 background-color: #00875f;
459 }
460
461 .terminal .xterm-color-30 {
462 color: #008787;
463 }
464
465 .terminal .xterm-bg-color-30 {
466 background-color: #008787;
467 }
468
469 .terminal .xterm-color-31 {
470 color: #0087af;
471 }
472
473 .terminal .xterm-bg-color-31 {
474 background-color: #0087af;
475 }
476
477 .terminal .xterm-color-32 {
478 color: #0087d7;
479 }
480
481 .terminal .xterm-bg-color-32 {
482 background-color: #0087d7;
483 }
484
485 .terminal .xterm-color-33 {
486 color: #0087ff;
487 }
488
489 .terminal .xterm-bg-color-33 {
490 background-color: #0087ff;
491 }
492
493 .terminal .xterm-color-34 {
494 color: #00af00;
495 }
496
497 .terminal .xterm-bg-color-34 {
498 background-color: #00af00;
499 }
500
501 .terminal .xterm-color-35 {
502 color: #00af5f;
503 }
504
505 .terminal .xterm-bg-color-35 {
506 background-color: #00af5f;
507 }
508
509 .terminal .xterm-color-36 {
510 color: #00af87;
511 }
512
513 .terminal .xterm-bg-color-36 {
514 background-color: #00af87;
515 }
516
517 .terminal .xterm-color-37 {
518 color: #00afaf;
519 }
520
521 .terminal .xterm-bg-color-37 {
522 background-color: #00afaf;
523 }
524
525 .terminal .xterm-color-38 {
526 color: #00afd7;
527 }
528
529 .terminal .xterm-bg-color-38 {
530 background-color: #00afd7;
531 }
532
533 .terminal .xterm-color-39 {
534 color: #00afff;
535 }
536
537 .terminal .xterm-bg-color-39 {
538 background-color: #00afff;
539 }
540
541 .terminal .xterm-color-40 {
542 color: #00d700;
543 }
544
545 .terminal .xterm-bg-color-40 {
546 background-color: #00d700;
547 }
548
549 .terminal .xterm-color-41 {
550 color: #00d75f;
551 }
552
553 .terminal .xterm-bg-color-41 {
554 background-color: #00d75f;
555 }
556
557 .terminal .xterm-color-42 {
558 color: #00d787;
559 }
560
561 .terminal .xterm-bg-color-42 {
562 background-color: #00d787;
563 }
564
565 .terminal .xterm-color-43 {
566 color: #00d7af;
567 }
568
569 .terminal .xterm-bg-color-43 {
570 background-color: #00d7af;
571 }
572
573 .terminal .xterm-color-44 {
574 color: #00d7d7;
575 }
576
577 .terminal .xterm-bg-color-44 {
578 background-color: #00d7d7;
579 }
580
581 .terminal .xterm-color-45 {
582 color: #00d7ff;
583 }
584
585 .terminal .xterm-bg-color-45 {
586 background-color: #00d7ff;
587 }
588
589 .terminal .xterm-color-46 {
590 color: #00ff00;
591 }
592
593 .terminal .xterm-bg-color-46 {
594 background-color: #00ff00;
595 }
596
597 .terminal .xterm-color-47 {
598 color: #00ff5f;
599 }
600
601 .terminal .xterm-bg-color-47 {
602 background-color: #00ff5f;
603 }
604
605 .terminal .xterm-color-48 {
606 color: #00ff87;
607 }
608
609 .terminal .xterm-bg-color-48 {
610 background-color: #00ff87;
611 }
612
613 .terminal .xterm-color-49 {
614 color: #00ffaf;
615 }
616
617 .terminal .xterm-bg-color-49 {
618 background-color: #00ffaf;
619 }
620
621 .terminal .xterm-color-50 {
622 color: #00ffd7;
623 }
624
625 .terminal .xterm-bg-color-50 {
626 background-color: #00ffd7;
627 }
628
629 .terminal .xterm-color-51 {
630 color: #00ffff;
631 }
632
633 .terminal .xterm-bg-color-51 {
634 background-color: #00ffff;
635 }
636
637 .terminal .xterm-color-52 {
638 color: #5f0000;
639 }
640
641 .terminal .xterm-bg-color-52 {
642 background-color: #5f0000;
643 }
644
645 .terminal .xterm-color-53 {
646 color: #5f005f;
647 }
648
649 .terminal .xterm-bg-color-53 {
650 background-color: #5f005f;
651 }
652
653 .terminal .xterm-color-54 {
654 color: #5f0087;
655 }
656
657 .terminal .xterm-bg-color-54 {
658 background-color: #5f0087;
659 }
660
661 .terminal .xterm-color-55 {
662 color: #5f00af;
663 }
664
665 .terminal .xterm-bg-color-55 {
666 background-color: #5f00af;
667 }
668
669 .terminal .xterm-color-56 {
670 color: #5f00d7;
671 }
672
673 .terminal .xterm-bg-color-56 {
674 background-color: #5f00d7;
675 }
676
677 .terminal .xterm-color-57 {
678 color: #5f00ff;
679 }
680
681 .terminal .xterm-bg-color-57 {
682 background-color: #5f00ff;
683 }
684
685 .terminal .xterm-color-58 {
686 color: #5f5f00;
687 }
688
689 .terminal .xterm-bg-color-58 {
690 background-color: #5f5f00;
691 }
692
693 .terminal .xterm-color-59 {
694 color: #5f5f5f;
695 }
696
697 .terminal .xterm-bg-color-59 {
698 background-color: #5f5f5f;
699 }
700
701 .terminal .xterm-color-60 {
702 color: #5f5f87;
703 }
704
705 .terminal .xterm-bg-color-60 {
706 background-color: #5f5f87;
707 }
708
709 .terminal .xterm-color-61 {
710 color: #5f5faf;
711 }
712
713 .terminal .xterm-bg-color-61 {
714 background-color: #5f5faf;
715 }
716
717 .terminal .xterm-color-62 {
718 color: #5f5fd7;
719 }
720
721 .terminal .xterm-bg-color-62 {
722 background-color: #5f5fd7;
723 }
724
725 .terminal .xterm-color-63 {
726 color: #5f5fff;
727 }
728
729 .terminal .xterm-bg-color-63 {
730 background-color: #5f5fff;
731 }
732
733 .terminal .xterm-color-64 {
734 color: #5f8700;
735 }
736
737 .terminal .xterm-bg-color-64 {
738 background-color: #5f8700;
739 }
740
741 .terminal .xterm-color-65 {
742 color: #5f875f;
743 }
744
745 .terminal .xterm-bg-color-65 {
746 background-color: #5f875f;
747 }
748
749 .terminal .xterm-color-66 {
750 color: #5f8787;
751 }
752
753 .terminal .xterm-bg-color-66 {
754 background-color: #5f8787;
755 }
756
757 .terminal .xterm-color-67 {
758 color: #5f87af;
759 }
760
761 .terminal .xterm-bg-color-67 {
762 background-color: #5f87af;
763 }
764
765 .terminal .xterm-color-68 {
766 color: #5f87d7;
767 }
768
769 .terminal .xterm-bg-color-68 {
770 background-color: #5f87d7;
771 }
772
773 .terminal .xterm-color-69 {
774 color: #5f87ff;
775 }
776
777 .terminal .xterm-bg-color-69 {
778 background-color: #5f87ff;
779 }
780
781 .terminal .xterm-color-70 {
782 color: #5faf00;
783 }
784
785 .terminal .xterm-bg-color-70 {
786 background-color: #5faf00;
787 }
788
789 .terminal .xterm-color-71 {
790 color: #5faf5f;
791 }
792
793 .terminal .xterm-bg-color-71 {
794 background-color: #5faf5f;
795 }
796
797 .terminal .xterm-color-72 {
798 color: #5faf87;
799 }
800
801 .terminal .xterm-bg-color-72 {
802 background-color: #5faf87;
803 }
804
805 .terminal .xterm-color-73 {
806 color: #5fafaf;
807 }
808
809 .terminal .xterm-bg-color-73 {
810 background-color: #5fafaf;
811 }
812
813 .terminal .xterm-color-74 {
814 color: #5fafd7;
815 }
816
817 .terminal .xterm-bg-color-74 {
818 background-color: #5fafd7;
819 }
820
821 .terminal .xterm-color-75 {
822 color: #5fafff;
823 }
824
825 .terminal .xterm-bg-color-75 {
826 background-color: #5fafff;
827 }
828
829 .terminal .xterm-color-76 {
830 color: #5fd700;
831 }
832
833 .terminal .xterm-bg-color-76 {
834 background-color: #5fd700;
835 }
836
837 .terminal .xterm-color-77 {
838 color: #5fd75f;
839 }
840
841 .terminal .xterm-bg-color-77 {
842 background-color: #5fd75f;
843 }
844
845 .terminal .xterm-color-78 {
846 color: #5fd787;
847 }
848
849 .terminal .xterm-bg-color-78 {
850 background-color: #5fd787;
851 }
852
853 .terminal .xterm-color-79 {
854 color: #5fd7af;
855 }
856
857 .terminal .xterm-bg-color-79 {
858 background-color: #5fd7af;
859 }
860
861 .terminal .xterm-color-80 {
862 color: #5fd7d7;
863 }
864
865 .terminal .xterm-bg-color-80 {
866 background-color: #5fd7d7;
867 }
868
869 .terminal .xterm-color-81 {
870 color: #5fd7ff;
871 }
872
873 .terminal .xterm-bg-color-81 {
874 background-color: #5fd7ff;
875 }
876
877 .terminal .xterm-color-82 {
878 color: #5fff00;
879 }
880
881 .terminal .xterm-bg-color-82 {
882 background-color: #5fff00;
883 }
884
885 .terminal .xterm-color-83 {
886 color: #5fff5f;
887 }
888
889 .terminal .xterm-bg-color-83 {
890 background-color: #5fff5f;
891 }
892
893 .terminal .xterm-color-84 {
894 color: #5fff87;
895 }
896
897 .terminal .xterm-bg-color-84 {
898 background-color: #5fff87;
899 }
900
901 .terminal .xterm-color-85 {
902 color: #5fffaf;
903 }
904
905 .terminal .xterm-bg-color-85 {
906 background-color: #5fffaf;
907 }
908
909 .terminal .xterm-color-86 {
910 color: #5fffd7;
911 }
912
913 .terminal .xterm-bg-color-86 {
914 background-color: #5fffd7;
915 }
916
917 .terminal .xterm-color-87 {
918 color: #5fffff;
919 }
920
921 .terminal .xterm-bg-color-87 {
922 background-color: #5fffff;
923 }
924
925 .terminal .xterm-color-88 {
926 color: #870000;
927 }
928
929 .terminal .xterm-bg-color-88 {
930 background-color: #870000;
931 }
932
933 .terminal .xterm-color-89 {
934 color: #87005f;
935 }
936
937 .terminal .xterm-bg-color-89 {
938 background-color: #87005f;
939 }
940
941 .terminal .xterm-color-90 {
942 color: #870087;
943 }
944
945 .terminal .xterm-bg-color-90 {
946 background-color: #870087;
947 }
948
949 .terminal .xterm-color-91 {
950 color: #8700af;
951 }
952
953 .terminal .xterm-bg-color-91 {
954 background-color: #8700af;
955 }
956
957 .terminal .xterm-color-92 {
958 color: #8700d7;
959 }
960
961 .terminal .xterm-bg-color-92 {
962 background-color: #8700d7;
963 }
964
965 .terminal .xterm-color-93 {
966 color: #8700ff;
967 }
968
969 .terminal .xterm-bg-color-93 {
970 background-color: #8700ff;
971 }
972
973 .terminal .xterm-color-94 {
974 color: #875f00;
975 }
976
977 .terminal .xterm-bg-color-94 {
978 background-color: #875f00;
979 }
980
981 .terminal .xterm-color-95 {
982 color: #875f5f;
983 }
984
985 .terminal .xterm-bg-color-95 {
986 background-color: #875f5f;
987 }
988
989 .terminal .xterm-color-96 {
990 color: #875f87;
991 }
992
993 .terminal .xterm-bg-color-96 {
994 background-color: #875f87;
995 }
996
997 .terminal .xterm-color-97 {
998 color: #875faf;
999 }
1000
1001 .terminal .xterm-bg-color-97 {
1002 background-color: #875faf;
1003 }
1004
1005 .terminal .xterm-color-98 {
1006 color: #875fd7;
1007 }
1008
1009 .terminal .xterm-bg-color-98 {
1010 background-color: #875fd7;
1011 }
1012
1013 .terminal .xterm-color-99 {
1014 color: #875fff;
1015 }
1016
1017 .terminal .xterm-bg-color-99 {
1018 background-color: #875fff;
1019 }
1020
1021 .terminal .xterm-color-100 {
1022 color: #878700;
1023 }
1024
1025 .terminal .xterm-bg-color-100 {
1026 background-color: #878700;
1027 }
1028
1029 .terminal .xterm-color-101 {
1030 color: #87875f;
1031 }
1032
1033 .terminal .xterm-bg-color-101 {
1034 background-color: #87875f;
1035 }
1036
1037 .terminal .xterm-color-102 {
1038 color: #878787;
1039 }
1040
1041 .terminal .xterm-bg-color-102 {
1042 background-color: #878787;
1043 }
1044
1045 .terminal .xterm-color-103 {
1046 color: #8787af;
1047 }
1048
1049 .terminal .xterm-bg-color-103 {
1050 background-color: #8787af;
1051 }
1052
1053 .terminal .xterm-color-104 {
1054 color: #8787d7;
1055 }
1056
1057 .terminal .xterm-bg-color-104 {
1058 background-color: #8787d7;
1059 }
1060
1061 .terminal .xterm-color-105 {
1062 color: #8787ff;
1063 }
1064
1065 .terminal .xterm-bg-color-105 {
1066 background-color: #8787ff;
1067 }
1068
1069 .terminal .xterm-color-106 {
1070 color: #87af00;
1071 }
1072
1073 .terminal .xterm-bg-color-106 {
1074 background-color: #87af00;
1075 }
1076
1077 .terminal .xterm-color-107 {
1078 color: #87af5f;
1079 }
1080
1081 .terminal .xterm-bg-color-107 {
1082 background-color: #87af5f;
1083 }
1084
1085 .terminal .xterm-color-108 {
1086 color: #87af87;
1087 }
1088
1089 .terminal .xterm-bg-color-108 {
1090 background-color: #87af87;
1091 }
1092
1093 .terminal .xterm-color-109 {
1094 color: #87afaf;
1095 }
1096
1097 .terminal .xterm-bg-color-109 {
1098 background-color: #87afaf;
1099 }
1100
1101 .terminal .xterm-color-110 {
1102 color: #87afd7;
1103 }
1104
1105 .terminal .xterm-bg-color-110 {
1106 background-color: #87afd7;
1107 }
1108
1109 .terminal .xterm-color-111 {
1110 color: #87afff;
1111 }
1112
1113 .terminal .xterm-bg-color-111 {
1114 background-color: #87afff;
1115 }
1116
1117 .terminal .xterm-color-112 {
1118 color: #87d700;
1119 }
1120
1121 .terminal .xterm-bg-color-112 {
1122 background-color: #87d700;
1123 }
1124
1125 .terminal .xterm-color-113 {
1126 color: #87d75f;
1127 }
1128
1129 .terminal .xterm-bg-color-113 {
1130 background-color: #87d75f;
1131 }
1132
1133 .terminal .xterm-color-114 {
1134 color: #87d787;
1135 }
1136
1137 .terminal .xterm-bg-color-114 {
1138 background-color: #87d787;
1139 }
1140
1141 .terminal .xterm-color-115 {
1142 color: #87d7af;
1143 }
1144
1145 .terminal .xterm-bg-color-115 {
1146 background-color: #87d7af;
1147 }
1148
1149 .terminal .xterm-color-116 {
1150 color: #87d7d7;
1151 }
1152
1153 .terminal .xterm-bg-color-116 {
1154 background-color: #87d7d7;
1155 }
1156
1157 .terminal .xterm-color-117 {
1158 color: #87d7ff;
1159 }
1160
1161 .terminal .xterm-bg-color-117 {
1162 background-color: #87d7ff;
1163 }
1164
1165 .terminal .xterm-color-118 {
1166 color: #87ff00;
1167 }
1168
1169 .terminal .xterm-bg-color-118 {
1170 background-color: #87ff00;
1171 }
1172
1173 .terminal .xterm-color-119 {
1174 color: #87ff5f;
1175 }
1176
1177 .terminal .xterm-bg-color-119 {
1178 background-color: #87ff5f;
1179 }
1180
1181 .terminal .xterm-color-120 {
1182 color: #87ff87;
1183 }
1184
1185 .terminal .xterm-bg-color-120 {
1186 background-color: #87ff87;
1187 }
1188
1189 .terminal .xterm-color-121 {
1190 color: #87ffaf;
1191 }
1192
1193 .terminal .xterm-bg-color-121 {
1194 background-color: #87ffaf;
1195 }
1196
1197 .terminal .xterm-color-122 {
1198 color: #87ffd7;
1199 }
1200
1201 .terminal .xterm-bg-color-122 {
1202 background-color: #87ffd7;
1203 }
1204
1205 .terminal .xterm-color-123 {
1206 color: #87ffff;
1207 }
1208
1209 .terminal .xterm-bg-color-123 {
1210 background-color: #87ffff;
1211 }
1212
1213 .terminal .xterm-color-124 {
1214 color: #af0000;
1215 }
1216
1217 .terminal .xterm-bg-color-124 {
1218 background-color: #af0000;
1219 }
1220
1221 .terminal .xterm-color-125 {
1222 color: #af005f;
1223 }
1224
1225 .terminal .xterm-bg-color-125 {
1226 background-color: #af005f;
1227 }
1228
1229 .terminal .xterm-color-126 {
1230 color: #af0087;
1231 }
1232
1233 .terminal .xterm-bg-color-126 {
1234 background-color: #af0087;
1235 }
1236
1237 .terminal .xterm-color-127 {
1238 color: #af00af;
1239 }
1240
1241 .terminal .xterm-bg-color-127 {
1242 background-color: #af00af;
1243 }
1244
1245 .terminal .xterm-color-128 {
1246 color: #af00d7;
1247 }
1248
1249 .terminal .xterm-bg-color-128 {
1250 background-color: #af00d7;
1251 }
1252
1253 .terminal .xterm-color-129 {
1254 color: #af00ff;
1255 }
1256
1257 .terminal .xterm-bg-color-129 {
1258 background-color: #af00ff;
1259 }
1260
1261 .terminal .xterm-color-130 {
1262 color: #af5f00;
1263 }
1264
1265 .terminal .xterm-bg-color-130 {
1266 background-color: #af5f00;
1267 }
1268
1269 .terminal .xterm-color-131 {
1270 color: #af5f5f;
1271 }
1272
1273 .terminal .xterm-bg-color-131 {
1274 background-color: #af5f5f;
1275 }
1276
1277 .terminal .xterm-color-132 {
1278 color: #af5f87;
1279 }
1280
1281 .terminal .xterm-bg-color-132 {
1282 background-color: #af5f87;
1283 }
1284
1285 .terminal .xterm-color-133 {
1286 color: #af5faf;
1287 }
1288
1289 .terminal .xterm-bg-color-133 {
1290 background-color: #af5faf;
1291 }
1292
1293 .terminal .xterm-color-134 {
1294 color: #af5fd7;
1295 }
1296
1297 .terminal .xterm-bg-color-134 {
1298 background-color: #af5fd7;
1299 }
1300
1301 .terminal .xterm-color-135 {
1302 color: #af5fff;
1303 }
1304
1305 .terminal .xterm-bg-color-135 {
1306 background-color: #af5fff;
1307 }
1308
1309 .terminal .xterm-color-136 {
1310 color: #af8700;
1311 }
1312
1313 .terminal .xterm-bg-color-136 {
1314 background-color: #af8700;
1315 }
1316
1317 .terminal .xterm-color-137 {
1318 color: #af875f;
1319 }
1320
1321 .terminal .xterm-bg-color-137 {
1322 background-color: #af875f;
1323 }
1324
1325 .terminal .xterm-color-138 {
1326 color: #af8787;
1327 }
1328
1329 .terminal .xterm-bg-color-138 {
1330 background-color: #af8787;
1331 }
1332
1333 .terminal .xterm-color-139 {
1334 color: #af87af;
1335 }
1336
1337 .terminal .xterm-bg-color-139 {
1338 background-color: #af87af;
1339 }
1340
1341 .terminal .xterm-color-140 {
1342 color: #af87d7;
1343 }
1344
1345 .terminal .xterm-bg-color-140 {
1346 background-color: #af87d7;
1347 }
1348
1349 .terminal .xterm-color-141 {
1350 color: #af87ff;
1351 }
1352
1353 .terminal .xterm-bg-color-141 {
1354 background-color: #af87ff;
1355 }
1356
1357 .terminal .xterm-color-142 {
1358 color: #afaf00;
1359 }
1360
1361 .terminal .xterm-bg-color-142 {
1362 background-color: #afaf00;
1363 }
1364
1365 .terminal .xterm-color-143 {
1366 color: #afaf5f;
1367 }
1368
1369 .terminal .xterm-bg-color-143 {
1370 background-color: #afaf5f;
1371 }
1372
1373 .terminal .xterm-color-144 {
1374 color: #afaf87;
1375 }
1376
1377 .terminal .xterm-bg-color-144 {
1378 background-color: #afaf87;
1379 }
1380
1381 .terminal .xterm-color-145 {
1382 color: #afafaf;
1383 }
1384
1385 .terminal .xterm-bg-color-145 {
1386 background-color: #afafaf;
1387 }
1388
1389 .terminal .xterm-color-146 {
1390 color: #afafd7;
1391 }
1392
1393 .terminal .xterm-bg-color-146 {
1394 background-color: #afafd7;
1395 }
1396
1397 .terminal .xterm-color-147 {
1398 color: #afafff;
1399 }
1400
1401 .terminal .xterm-bg-color-147 {
1402 background-color: #afafff;
1403 }
1404
1405 .terminal .xterm-color-148 {
1406 color: #afd700;
1407 }
1408
1409 .terminal .xterm-bg-color-148 {
1410 background-color: #afd700;
1411 }
1412
1413 .terminal .xterm-color-149 {
1414 color: #afd75f;
1415 }
1416
1417 .terminal .xterm-bg-color-149 {
1418 background-color: #afd75f;
1419 }
1420
1421 .terminal .xterm-color-150 {
1422 color: #afd787;
1423 }
1424
1425 .terminal .xterm-bg-color-150 {
1426 background-color: #afd787;
1427 }
1428
1429 .terminal .xterm-color-151 {
1430 color: #afd7af;
1431 }
1432
1433 .terminal .xterm-bg-color-151 {
1434 background-color: #afd7af;
1435 }
1436
1437 .terminal .xterm-color-152 {
1438 color: #afd7d7;
1439 }
1440
1441 .terminal .xterm-bg-color-152 {
1442 background-color: #afd7d7;
1443 }
1444
1445 .terminal .xterm-color-153 {
1446 color: #afd7ff;
1447 }
1448
1449 .terminal .xterm-bg-color-153 {
1450 background-color: #afd7ff;
1451 }
1452
1453 .terminal .xterm-color-154 {
1454 color: #afff00;
1455 }
1456
1457 .terminal .xterm-bg-color-154 {
1458 background-color: #afff00;
1459 }
1460
1461 .terminal .xterm-color-155 {
1462 color: #afff5f;
1463 }
1464
1465 .terminal .xterm-bg-color-155 {
1466 background-color: #afff5f;
1467 }
1468
1469 .terminal .xterm-color-156 {
1470 color: #afff87;
1471 }
1472
1473 .terminal .xterm-bg-color-156 {
1474 background-color: #afff87;
1475 }
1476
1477 .terminal .xterm-color-157 {
1478 color: #afffaf;
1479 }
1480
1481 .terminal .xterm-bg-color-157 {
1482 background-color: #afffaf;
1483 }
1484
1485 .terminal .xterm-color-158 {
1486 color: #afffd7;
1487 }
1488
1489 .terminal .xterm-bg-color-158 {
1490 background-color: #afffd7;
1491 }
1492
1493 .terminal .xterm-color-159 {
1494 color: #afffff;
1495 }
1496
1497 .terminal .xterm-bg-color-159 {
1498 background-color: #afffff;
1499 }
1500
1501 .terminal .xterm-color-160 {
1502 color: #d70000;
1503 }
1504
1505 .terminal .xterm-bg-color-160 {
1506 background-color: #d70000;
1507 }
1508
1509 .terminal .xterm-color-161 {
1510 color: #d7005f;
1511 }
1512
1513 .terminal .xterm-bg-color-161 {
1514 background-color: #d7005f;
1515 }
1516
1517 .terminal .xterm-color-162 {
1518 color: #d70087;
1519 }
1520
1521 .terminal .xterm-bg-color-162 {
1522 background-color: #d70087;
1523 }
1524
1525 .terminal .xterm-color-163 {
1526 color: #d700af;
1527 }
1528
1529 .terminal .xterm-bg-color-163 {
1530 background-color: #d700af;
1531 }
1532
1533 .terminal .xterm-color-164 {
1534 color: #d700d7;
1535 }
1536
1537 .terminal .xterm-bg-color-164 {
1538 background-color: #d700d7;
1539 }
1540
1541 .terminal .xterm-color-165 {
1542 color: #d700ff;
1543 }
1544
1545 .terminal .xterm-bg-color-165 {
1546 background-color: #d700ff;
1547 }
1548
1549 .terminal .xterm-color-166 {
1550 color: #d75f00;
1551 }
1552
1553 .terminal .xterm-bg-color-166 {
1554 background-color: #d75f00;
1555 }
1556
1557 .terminal .xterm-color-167 {
1558 color: #d75f5f;
1559 }
1560
1561 .terminal .xterm-bg-color-167 {
1562 background-color: #d75f5f;
1563 }
1564
1565 .terminal .xterm-color-168 {
1566 color: #d75f87;
1567 }
1568
1569 .terminal .xterm-bg-color-168 {
1570 background-color: #d75f87;
1571 }
1572
1573 .terminal .xterm-color-169 {
1574 color: #d75faf;
1575 }
1576
1577 .terminal .xterm-bg-color-169 {
1578 background-color: #d75faf;
1579 }
1580
1581 .terminal .xterm-color-170 {
1582 color: #d75fd7;
1583 }
1584
1585 .terminal .xterm-bg-color-170 {
1586 background-color: #d75fd7;
1587 }
1588
1589 .terminal .xterm-color-171 {
1590 color: #d75fff;
1591 }
1592
1593 .terminal .xterm-bg-color-171 {
1594 background-color: #d75fff;
1595 }
1596
1597 .terminal .xterm-color-172 {
1598 color: #d78700;
1599 }
1600
1601 .terminal .xterm-bg-color-172 {
1602 background-color: #d78700;
1603 }
1604
1605 .terminal .xterm-color-173 {
1606 color: #d7875f;
1607 }
1608
1609 .terminal .xterm-bg-color-173 {
1610 background-color: #d7875f;
1611 }
1612
1613 .terminal .xterm-color-174 {
1614 color: #d78787;
1615 }
1616
1617 .terminal .xterm-bg-color-174 {
1618 background-color: #d78787;
1619 }
1620
1621 .terminal .xterm-color-175 {
1622 color: #d787af;
1623 }
1624
1625 .terminal .xterm-bg-color-175 {
1626 background-color: #d787af;
1627 }
1628
1629 .terminal .xterm-color-176 {
1630 color: #d787d7;
1631 }
1632
1633 .terminal .xterm-bg-color-176 {
1634 background-color: #d787d7;
1635 }
1636
1637 .terminal .xterm-color-177 {
1638 color: #d787ff;
1639 }
1640
1641 .terminal .xterm-bg-color-177 {
1642 background-color: #d787ff;
1643 }
1644
1645 .terminal .xterm-color-178 {
1646 color: #d7af00;
1647 }
1648
1649 .terminal .xterm-bg-color-178 {
1650 background-color: #d7af00;
1651 }
1652
1653 .terminal .xterm-color-179 {
1654 color: #d7af5f;
1655 }
1656
1657 .terminal .xterm-bg-color-179 {
1658 background-color: #d7af5f;
1659 }
1660
1661 .terminal .xterm-color-180 {
1662 color: #d7af87;
1663 }
1664
1665 .terminal .xterm-bg-color-180 {
1666 background-color: #d7af87;
1667 }
1668
1669 .terminal .xterm-color-181 {
1670 color: #d7afaf;
1671 }
1672
1673 .terminal .xterm-bg-color-181 {
1674 background-color: #d7afaf;
1675 }
1676
1677 .terminal .xterm-color-182 {
1678 color: #d7afd7;
1679 }
1680
1681 .terminal .xterm-bg-color-182 {
1682 background-color: #d7afd7;
1683 }
1684
1685 .terminal .xterm-color-183 {
1686 color: #d7afff;
1687 }
1688
1689 .terminal .xterm-bg-color-183 {
1690 background-color: #d7afff;
1691 }
1692
1693 .terminal .xterm-color-184 {
1694 color: #d7d700;
1695 }
1696
1697 .terminal .xterm-bg-color-184 {
1698 background-color: #d7d700;
1699 }
1700
1701 .terminal .xterm-color-185 {
1702 color: #d7d75f;
1703 }
1704
1705 .terminal .xterm-bg-color-185 {
1706 background-color: #d7d75f;
1707 }
1708
1709 .terminal .xterm-color-186 {
1710 color: #d7d787;
1711 }
1712
1713 .terminal .xterm-bg-color-186 {
1714 background-color: #d7d787;
1715 }
1716
1717 .terminal .xterm-color-187 {
1718 color: #d7d7af;
1719 }
1720
1721 .terminal .xterm-bg-color-187 {
1722 background-color: #d7d7af;
1723 }
1724
1725 .terminal .xterm-color-188 {
1726 color: #d7d7d7;
1727 }
1728
1729 .terminal .xterm-bg-color-188 {
1730 background-color: #d7d7d7;
1731 }
1732
1733 .terminal .xterm-color-189 {
1734 color: #d7d7ff;
1735 }
1736
1737 .terminal .xterm-bg-color-189 {
1738 background-color: #d7d7ff;
1739 }
1740
1741 .terminal .xterm-color-190 {
1742 color: #d7ff00;
1743 }
1744
1745 .terminal .xterm-bg-color-190 {
1746 background-color: #d7ff00;
1747 }
1748
1749 .terminal .xterm-color-191 {
1750 color: #d7ff5f;
1751 }
1752
1753 .terminal .xterm-bg-color-191 {
1754 background-color: #d7ff5f;
1755 }
1756
1757 .terminal .xterm-color-192 {
1758 color: #d7ff87;
1759 }
1760
1761 .terminal .xterm-bg-color-192 {
1762 background-color: #d7ff87;
1763 }
1764
1765 .terminal .xterm-color-193 {
1766 color: #d7ffaf;
1767 }
1768
1769 .terminal .xterm-bg-color-193 {
1770 background-color: #d7ffaf;
1771 }
1772
1773 .terminal .xterm-color-194 {
1774 color: #d7ffd7;
1775 }
1776
1777 .terminal .xterm-bg-color-194 {
1778 background-color: #d7ffd7;
1779 }
1780
1781 .terminal .xterm-color-195 {
1782 color: #d7ffff;
1783 }
1784
1785 .terminal .xterm-bg-color-195 {
1786 background-color: #d7ffff;
1787 }
1788
1789 .terminal .xterm-color-196 {
1790 color: #ff0000;
1791 }
1792
1793 .terminal .xterm-bg-color-196 {
1794 background-color: #ff0000;
1795 }
1796
1797 .terminal .xterm-color-197 {
1798 color: #ff005f;
1799 }
1800
1801 .terminal .xterm-bg-color-197 {
1802 background-color: #ff005f;
1803 }
1804
1805 .terminal .xterm-color-198 {
1806 color: #ff0087;
1807 }
1808
1809 .terminal .xterm-bg-color-198 {
1810 background-color: #ff0087;
1811 }
1812
1813 .terminal .xterm-color-199 {
1814 color: #ff00af;
1815 }
1816
1817 .terminal .xterm-bg-color-199 {
1818 background-color: #ff00af;
1819 }
1820
1821 .terminal .xterm-color-200 {
1822 color: #ff00d7;
1823 }
1824
1825 .terminal .xterm-bg-color-200 {
1826 background-color: #ff00d7;
1827 }
1828
1829 .terminal .xterm-color-201 {
1830 color: #ff00ff;
1831 }
1832
1833 .terminal .xterm-bg-color-201 {
1834 background-color: #ff00ff;
1835 }
1836
1837 .terminal .xterm-color-202 {
1838 color: #ff5f00;
1839 }
1840
1841 .terminal .xterm-bg-color-202 {
1842 background-color: #ff5f00;
1843 }
1844
1845 .terminal .xterm-color-203 {
1846 color: #ff5f5f;
1847 }
1848
1849 .terminal .xterm-bg-color-203 {
1850 background-color: #ff5f5f;
1851 }
1852
1853 .terminal .xterm-color-204 {
1854 color: #ff5f87;
1855 }
1856
1857 .terminal .xterm-bg-color-204 {
1858 background-color: #ff5f87;
1859 }
1860
1861 .terminal .xterm-color-205 {
1862 color: #ff5faf;
1863 }
1864
1865 .terminal .xterm-bg-color-205 {
1866 background-color: #ff5faf;
1867 }
1868
1869 .terminal .xterm-color-206 {
1870 color: #ff5fd7;
1871 }
1872
1873 .terminal .xterm-bg-color-206 {
1874 background-color: #ff5fd7;
1875 }
1876
1877 .terminal .xterm-color-207 {
1878 color: #ff5fff;
1879 }
1880
1881 .terminal .xterm-bg-color-207 {
1882 background-color: #ff5fff;
1883 }
1884
1885 .terminal .xterm-color-208 {
1886 color: #ff8700;
1887 }
1888
1889 .terminal .xterm-bg-color-208 {
1890 background-color: #ff8700;
1891 }
1892
1893 .terminal .xterm-color-209 {
1894 color: #ff875f;
1895 }
1896
1897 .terminal .xterm-bg-color-209 {
1898 background-color: #ff875f;
1899 }
1900
1901 .terminal .xterm-color-210 {
1902 color: #ff8787;
1903 }
1904
1905 .terminal .xterm-bg-color-210 {
1906 background-color: #ff8787;
1907 }
1908
1909 .terminal .xterm-color-211 {
1910 color: #ff87af;
1911 }
1912
1913 .terminal .xterm-bg-color-211 {
1914 background-color: #ff87af;
1915 }
1916
1917 .terminal .xterm-color-212 {
1918 color: #ff87d7;
1919 }
1920
1921 .terminal .xterm-bg-color-212 {
1922 background-color: #ff87d7;
1923 }
1924
1925 .terminal .xterm-color-213 {
1926 color: #ff87ff;
1927 }
1928
1929 .terminal .xterm-bg-color-213 {
1930 background-color: #ff87ff;
1931 }
1932
1933 .terminal .xterm-color-214 {
1934 color: #ffaf00;
1935 }
1936
1937 .terminal .xterm-bg-color-214 {
1938 background-color: #ffaf00;
1939 }
1940
1941 .terminal .xterm-color-215 {
1942 color: #ffaf5f;
1943 }
1944
1945 .terminal .xterm-bg-color-215 {
1946 background-color: #ffaf5f;
1947 }
1948
1949 .terminal .xterm-color-216 {
1950 color: #ffaf87;
1951 }
1952
1953 .terminal .xterm-bg-color-216 {
1954 background-color: #ffaf87;
1955 }
1956
1957 .terminal .xterm-color-217 {
1958 color: #ffafaf;
1959 }
1960
1961 .terminal .xterm-bg-color-217 {
1962 background-color: #ffafaf;
1963 }
1964
1965 .terminal .xterm-color-218 {
1966 color: #ffafd7;
1967 }
1968
1969 .terminal .xterm-bg-color-218 {
1970 background-color: #ffafd7;
1971 }
1972
1973 .terminal .xterm-color-219 {
1974 color: #ffafff;
1975 }
1976
1977 .terminal .xterm-bg-color-219 {
1978 background-color: #ffafff;
1979 }
1980
1981 .terminal .xterm-color-220 {
1982 color: #ffd700;
1983 }
1984
1985 .terminal .xterm-bg-color-220 {
1986 background-color: #ffd700;
1987 }
1988
1989 .terminal .xterm-color-221 {
1990 color: #ffd75f;
1991 }
1992
1993 .terminal .xterm-bg-color-221 {
1994 background-color: #ffd75f;
1995 }
1996
1997 .terminal .xterm-color-222 {
1998 color: #ffd787;
1999 }
2000
2001 .terminal .xterm-bg-color-222 {
2002 background-color: #ffd787;
2003 }
2004
2005 .terminal .xterm-color-223 {
2006 color: #ffd7af;
2007 }
2008
2009 .terminal .xterm-bg-color-223 {
2010 background-color: #ffd7af;
2011 }
2012
2013 .terminal .xterm-color-224 {
2014 color: #ffd7d7;
2015 }
2016
2017 .terminal .xterm-bg-color-224 {
2018 background-color: #ffd7d7;
2019 }
2020
2021 .terminal .xterm-color-225 {
2022 color: #ffd7ff;
2023 }
2024
2025 .terminal .xterm-bg-color-225 {
2026 background-color: #ffd7ff;
2027 }
2028
2029 .terminal .xterm-color-226 {
2030 color: #ffff00;
2031 }
2032
2033 .terminal .xterm-bg-color-226 {
2034 background-color: #ffff00;
2035 }
2036
2037 .terminal .xterm-color-227 {
2038 color: #ffff5f;
2039 }
2040
2041 .terminal .xterm-bg-color-227 {
2042 background-color: #ffff5f;
2043 }
2044
2045 .terminal .xterm-color-228 {
2046 color: #ffff87;
2047 }
2048
2049 .terminal .xterm-bg-color-228 {
2050 background-color: #ffff87;
2051 }
2052
2053 .terminal .xterm-color-229 {
2054 color: #ffffaf;
2055 }
2056
2057 .terminal .xterm-bg-color-229 {
2058 background-color: #ffffaf;
2059 }
2060
2061 .terminal .xterm-color-230 {
2062 color: #ffffd7;
2063 }
2064
2065 .terminal .xterm-bg-color-230 {
2066 background-color: #ffffd7;
2067 }
2068
2069 .terminal .xterm-color-231 {
2070 color: #ffffff;
2071 }
2072
2073 .terminal .xterm-bg-color-231 {
2074 background-color: #ffffff;
2075 }
2076
2077 .terminal .xterm-color-232 {
2078 color: #080808;
2079 }
2080
2081 .terminal .xterm-bg-color-232 {
2082 background-color: #080808;
2083 }
2084
2085 .terminal .xterm-color-233 {
2086 color: #121212;
2087 }
2088
2089 .terminal .xterm-bg-color-233 {
2090 background-color: #121212;
2091 }
2092
2093 .terminal .xterm-color-234 {
2094 color: #1c1c1c;
2095 }
2096
2097 .terminal .xterm-bg-color-234 {
2098 background-color: #1c1c1c;
2099 }
2100
2101 .terminal .xterm-color-235 {
2102 color: #262626;
2103 }
2104
2105 .terminal .xterm-bg-color-235 {
2106 background-color: #262626;
2107 }
2108
2109 .terminal .xterm-color-236 {
2110 color: #303030;
2111 }
2112
2113 .terminal .xterm-bg-color-236 {
2114 background-color: #303030;
2115 }
2116
2117 .terminal .xterm-color-237 {
2118 color: #3a3a3a;
2119 }
2120
2121 .terminal .xterm-bg-color-237 {
2122 background-color: #3a3a3a;
2123 }
2124
2125 .terminal .xterm-color-238 {
2126 color: #444444;
2127 }
2128
2129 .terminal .xterm-bg-color-238 {
2130 background-color: #444444;
2131 }
2132
2133 .terminal .xterm-color-239 {
2134 color: #4e4e4e;
2135 }
2136
2137 .terminal .xterm-bg-color-239 {
2138 background-color: #4e4e4e;
2139 }
2140
2141 .terminal .xterm-color-240 {
2142 color: #585858;
2143 }
2144
2145 .terminal .xterm-bg-color-240 {
2146 background-color: #585858;
2147 }
2148
2149 .terminal .xterm-color-241 {
2150 color: #626262;
2151 }
2152
2153 .terminal .xterm-bg-color-241 {
2154 background-color: #626262;
2155 }
2156
2157 .terminal .xterm-color-242 {
2158 color: #6c6c6c;
2159 }
2160
2161 .terminal .xterm-bg-color-242 {
2162 background-color: #6c6c6c;
2163 }
2164
2165 .terminal .xterm-color-243 {
2166 color: #767676;
2167 }
2168
2169 .terminal .xterm-bg-color-243 {
2170 background-color: #767676;
2171 }
2172
2173 .terminal .xterm-color-244 {
2174 color: #808080;
2175 }
2176
2177 .terminal .xterm-bg-color-244 {
2178 background-color: #808080;
2179 }
2180
2181 .terminal .xterm-color-245 {
2182 color: #8a8a8a;
2183 }
2184
2185 .terminal .xterm-bg-color-245 {
2186 background-color: #8a8a8a;
2187 }
2188
2189 .terminal .xterm-color-246 {
2190 color: #949494;
2191 }
2192
2193 .terminal .xterm-bg-color-246 {
2194 background-color: #949494;
2195 }
2196
2197 .terminal .xterm-color-247 {
2198 color: #9e9e9e;
2199 }
2200
2201 .terminal .xterm-bg-color-247 {
2202 background-color: #9e9e9e;
2203 }
2204
2205 .terminal .xterm-color-248 {
2206 color: #a8a8a8;
2207 }
2208
2209 .terminal .xterm-bg-color-248 {
2210 background-color: #a8a8a8;
2211 }
2212
2213 .terminal .xterm-color-249 {
2214 color: #b2b2b2;
2215 }
2216
2217 .terminal .xterm-bg-color-249 {
2218 background-color: #b2b2b2;
2219 }
2220
2221 .terminal .xterm-color-250 {
2222 color: #bcbcbc;
2223 }
2224
2225 .terminal .xterm-bg-color-250 {
2226 background-color: #bcbcbc;
2227 }
2228
2229 .terminal .xterm-color-251 {
2230 color: #c6c6c6;
2231 }
2232
2233 .terminal .xterm-bg-color-251 {
2234 background-color: #c6c6c6;
2235 }
2236
2237 .terminal .xterm-color-252 {
2238 color: #d0d0d0;
2239 }
2240
2241 .terminal .xterm-bg-color-252 {
2242 background-color: #d0d0d0;
2243 }
2244
2245 .terminal .xterm-color-253 {
2246 color: #dadada;
2247 }
2248
2249 .terminal .xterm-bg-color-253 {
2250 background-color: #dadada;
2251 }
2252
2253 .terminal .xterm-color-254 {
2254 color: #e4e4e4;
2255 }
2256
2257 .terminal .xterm-bg-color-254 {
2258 background-color: #e4e4e4;
2259 }
2260
2261 .terminal .xterm-color-255 {
2262 color: #eeeeee;
2263 }
2264
2265 .terminal .xterm-bg-color-255 {
2266 background-color: #eeeeee;
2267 }