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