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