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