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