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