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