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