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