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