Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

2443 linhas
32KB

  1. /* rs-theme-name: Oceanic Plus SCSS */
  2. /* rs-theme-is-dark: TRUE */
  3. /* https://github.com/marcoms/oceanic-plus */
  4. /* grayscale */
  5. /* editor base (bluish) */
  6. /* COLORS */
  7. /* red */
  8. /* orange */
  9. /* yellow */
  10. /* jasmine */
  11. /* teal */
  12. /* muted blue */
  13. /* fucshia */
  14. /* brown */
  15. .ace_gutter {
  16. background: #1B2B34;
  17. color: rgba(216, 222, 233, 0.5);
  18. }
  19. .ace_print-margin {
  20. width: 2px;
  21. background: rgba(255, 255, 255, 0.4);
  22. }
  23. .ace_editor {
  24. background-color: #1B2B34;
  25. color: #D8DEE9;
  26. }
  27. .rstudio-themes-flat.ace_editor_theme {
  28. background-color: #1B2B34;
  29. color: #D8DEE9;
  30. }
  31. .rstudio-themes-flat.ace_editor_theme .profvis-flamegraph {
  32. background-color: #1B2B34;
  33. color: #D8DEE9;
  34. }
  35. .rstudio-themes-flat .ace_editor_theme {
  36. background-color: #1B2B34;
  37. color: #D8DEE9;
  38. }
  39. .rstudio-themes-flat.editor_dark.ace_editor_theme a {
  40. color: #FFF !important;
  41. }
  42. .ace_cursor {
  43. color: #FAC863;
  44. }
  45. .ace_marker-layer .ace_selection {
  46. background: rgba(192, 197, 206, 0.4);
  47. }
  48. .ace_marker-layer .ace_step {
  49. background: #b9d9b5;
  50. }
  51. .ace_marker-layer .ace_bracket {
  52. margin: -1px 0 0 -1px;
  53. border: 1px solid #65737E;
  54. }
  55. .ace_marker-layer .ace_active-line {
  56. background: #18252d;
  57. }
  58. .ace_marker-layer .ace_selected-word {
  59. border: 1px solid rgba(192, 197, 206, 0.4);
  60. }
  61. .ace_marker-layer .ace_foreign_line {
  62. position: absolute;
  63. z-index: -1;
  64. background-color: #4F5B66;
  65. }
  66. .ace_marker-layer .ace_active_debug_line {
  67. position: absolute;
  68. z-index: -1;
  69. background-color: #2c4756;
  70. }
  71. .ace_marker-layer .ace_find_line {
  72. position: absolute;
  73. z-index: -1;
  74. background-color: #65737E;
  75. }
  76. .ace_gutter-active-line {
  77. background-color: #4F5B66;
  78. }
  79. .ace_fold {
  80. background-color: #EC5f67;
  81. border-color: #D8DEE9;
  82. }
  83. .ace_indent-guide {
  84. border-right: 1px solid #65737E;
  85. }
  86. .ace_active-line ~ .ace_selection.ace_start {
  87. background-color: #18252d;
  88. }
  89. .ace_keyword {
  90. font-style: italic;
  91. color: #C594C5;
  92. }
  93. .ace_keyword.ace_operator {
  94. font-style: normal;
  95. color: #5FB3B3;
  96. }
  97. .ace_keyword.ace_other.ace_unit {
  98. font-style: normal;
  99. color: #F99157;
  100. }
  101. .ace_constant.ace_language {
  102. color: #AB7967;
  103. }
  104. .ace_constant.ace_numeric {
  105. color: #F99157;
  106. }
  107. .ace_constant.ace_character {
  108. color: #F99157;
  109. }
  110. .ace_constant.ace_other {
  111. color: #D8DEE9;
  112. }
  113. .ace_support.ace_function {
  114. color: #6699CC;
  115. }
  116. .ace_support.ace_constant {
  117. color: #F99157;
  118. }
  119. .ace_support.ace_class {
  120. font-style: italic;
  121. color: #FAC863;
  122. }
  123. .ace_support.ace_type {
  124. color: #FAC863;
  125. }
  126. .ace_paren.ace_keyword.ace_operator {
  127. color: #5FB3B3;
  128. }
  129. .ace_storage {
  130. color: #C594C5;
  131. }
  132. .ace_storage.ace_type {
  133. color: #C594C5;
  134. }
  135. .ace_invalid {
  136. background-color: rgba(236, 95, 103, 0.5);
  137. }
  138. .ace_invalid.ace_deprecated {
  139. background-color: rgba(197, 148, 197, 0.5);
  140. }
  141. .ace_string {
  142. color: #99C794;
  143. }
  144. .ace_comment {
  145. color: #A7ADBA;
  146. }
  147. .ace_invisible {
  148. color: #65737E;
  149. }
  150. .ace_variable {
  151. color: #EC5f67;
  152. }
  153. .ace_variable.ace_parameter {
  154. color: #F99157;
  155. }
  156. .ace_entity.ace_name.ace_function {
  157. color: #6699CC;
  158. }
  159. .ace_entity.ace_name.ace_tag {
  160. color: #EC5f67;
  161. }
  162. .ace_entity.ace_other.ace_attribute-name {
  163. color: #C594C5;
  164. }
  165. .ace_bracket {
  166. margin: 0 !important;
  167. border: 0 !important;
  168. background-color: #65737E;
  169. }
  170. .ace_console_error {
  171. background-color: #65737E;
  172. }
  173. .ace_layer {
  174. z-index: 3;
  175. }
  176. .ace_layer.ace_print-margin-layer {
  177. z-index: 2;
  178. }
  179. .ace_layer.ace_marker-layer {
  180. z-index: 1;
  181. }
  182. .ace_selection.ace_start {
  183. box-shadow: 0 0 3px 0 #1B2B34;
  184. border-radius: 2px;
  185. }
  186. .ace_meta.ace_tag {
  187. color: #5FB3B3;
  188. }
  189. .ace_markup.ace_heading {
  190. font-weight: 600;
  191. color: #99C794;
  192. }
  193. .nocolor.ace_editor .ace_line span {
  194. color: #C594C5 !important;
  195. }
  196. /* ---- RStudio Theme ---- */
  197. /* background */
  198. .rstudio-themes-flat .rstudio-themes-dark-grey {
  199. background: #343D46 !important;
  200. color: #D8DEE9 !important;
  201. }
  202. .rstudio-themes-flat .rstudio-themes-dark-grey .rstudio-themes-background {
  203. background: #343D46 !important;
  204. }
  205. /* inactive tabs */
  206. table.rstheme_tabLayoutCenter, .rstudio-themes-flat .rstudio-themes-dark-grey .gwt-TabLayoutPanelTabs, .rstheme_multiPodUtilityTabArea {
  207. background: #343D46 !important;
  208. }
  209. table.rstheme_tabLayoutCenter .gwt-Label, .rstudio-themes-flat .rstudio-themes-dark-grey .gwt-TabLayoutPanelTabs .gwt-Label, .rstheme_multiPodUtilityTabArea .gwt-Label {
  210. color: #C0C5CE;
  211. }
  212. /* toolbar and selected tab */
  213. .rstudio-themes-flat .rstudio-themes-dark-grey .rstheme_center, .rstudio-themes-flat .rstudio-themes-dark-grey .gwt-TabLayoutPanelTabs .gwt-TabLayoutPanelTab-selected table.rstheme_tabLayoutCenter {
  214. background: #4F5B66 !important;
  215. }
  216. .rstudio-themes-flat .rstudio-themes-dark-grey .gwt-TabLayoutPanelTab-selected .gwt-Label {
  217. color: #CDD3DE;
  218. }
  219. .rstheme_toolbarWrapper {
  220. background: #4F5B66 !important;
  221. }
  222. .rstudio-themes-flat {
  223. /* search */
  224. }
  225. .rstudio-themes-flat .rstudio-themes-dark-grey {
  226. /* spliters */
  227. }
  228. .rstudio-themes-flat .rstudio-themes-dark-grey .gwt-SplitLayoutPanel-HDragger, .rstudio-themes-flat .rstudio-themes-dark-grey .gwt-SplitLayoutPanel-VDragger {
  229. background: transparent !important;
  230. }
  231. .rstudio-themes-flat .rstudio-themes-dark .search, .rstudio-themes-flat.rstudio-themes-dark-menus .search {
  232. background: #4F5B66 !important;
  233. }
  234. /* pane toolbars */
  235. .rstheme_secondaryToolbar, .rstudio-themes-flat .rstudio-themes-dark-grey .dataGridHeader {
  236. background: #4F5B66 !important;
  237. }
  238. /* menu background */
  239. .popupMiddleCenter, .menuPopupMiddleCenter, .suggestPopupMiddleCenter {
  240. background: #1B2B34 !important;
  241. color: #D8DEE9 !important;
  242. }
  243. .themedPopupPanel {
  244. border: solid 1px #65737E;
  245. }
  246. .themedPopupPanel ~ div.popupContent div:nth-child(1) {
  247. border: solid 1px #65737E;
  248. }
  249. .popupContent {
  250. background: #1B2B34;
  251. color: #D8DEE9;
  252. }
  253. .popupContent:not(.popupMiddleCenterInner) div div:nth-child(2) {
  254. background: #1B2B34 !important;
  255. border: solid 1px #65737E;
  256. }
  257. .terminal {
  258. background-color: #1B2B34;
  259. color: #D8DEE9;
  260. font-feature-settings: "liga" 0;
  261. position: relative;
  262. user-select: none;
  263. -ms-user-select: none;
  264. -webkit-user-select: none;
  265. }
  266. .terminal.xterm-cursor-style-block.focus:not(.xterm-cursor-blink-on) .terminal-cursor {
  267. background-color: #FAC863;
  268. color: #FAC863;
  269. }
  270. .terminal.focus.xterm-cursor-style-bar:not(.xterm-cursor-blink-on) .terminal-cursor::before, .terminal.focus.xterm-cursor-style-underline:not(.xterm-cursor-blink-on) .terminal-cursor::before {
  271. content: '';
  272. position: absolute;
  273. background-color: #1B2B34;
  274. }
  275. .terminal:not(.focus) .terminal-cursor {
  276. outline: 1px solid #D8DEE9;
  277. outline-offset: -1px;
  278. }
  279. .terminal .xterm-selection div {
  280. position: absolute;
  281. background-color: rgba(192, 197, 206, 0.4);
  282. }
  283. .terminal .xterm-viewport {
  284. background-color: #1B2B34;
  285. overflow-y: scroll;
  286. }
  287. .xtermInvertColor {
  288. color: #D8DEE9;
  289. }
  290. .xtermInvertBgColor {
  291. background-color: #1B2B34;
  292. }
  293. .xtermBold {
  294. font-weight: bold;
  295. }
  296. .xtermUnderline {
  297. text-decoration: underline;
  298. }
  299. .xtermBlink {
  300. text-decoration: blink;
  301. }
  302. .xtermHidden {
  303. visibility: hidden;
  304. }
  305. .xtermItalic {
  306. font-style: italic;
  307. }
  308. .xtermStrike {
  309. text-decoration: line-through;
  310. }
  311. .xtermColor0 {
  312. color: #2e3436 !important;
  313. }
  314. .xtermBgColor0 {
  315. background-color: #2e3436;
  316. }
  317. .xtermColor1 {
  318. color: #cc0000 !important;
  319. }
  320. .xtermBgColor1 {
  321. background-color: #cc0000;
  322. }
  323. .xtermColor2 {
  324. color: #4e9a06 !important;
  325. }
  326. .xtermBgColor2 {
  327. background-color: #4e9a06;
  328. }
  329. .xtermColor3 {
  330. color: #c4a000 !important;
  331. }
  332. .xtermBgColor3 {
  333. background-color: #c4a000;
  334. }
  335. .xtermColor4 {
  336. color: #3465a4 !important;
  337. }
  338. .xtermBgColor4 {
  339. background-color: #3465a4;
  340. }
  341. .xtermColor5 {
  342. color: #75507b !important;
  343. }
  344. .xtermBgColor5 {
  345. background-color: #75507b;
  346. }
  347. .xtermColor6 {
  348. color: #06989a !important;
  349. }
  350. .xtermBgColor6 {
  351. background-color: #06989a;
  352. }
  353. .xtermColor7 {
  354. color: #d3d7cf !important;
  355. }
  356. .xtermBgColor7 {
  357. background-color: #d3d7cf;
  358. }
  359. .xtermColor8 {
  360. color: #555753 !important;
  361. }
  362. .xtermBgColor8 {
  363. background-color: #555753;
  364. }
  365. .xtermColor9 {
  366. color: #ef2929 !important;
  367. }
  368. .xtermBgColor9 {
  369. background-color: #ef2929;
  370. }
  371. .xtermColor10 {
  372. color: #8ae234 !important;
  373. }
  374. .xtermBgColor10 {
  375. background-color: #8ae234;
  376. }
  377. .xtermColor11 {
  378. color: #fce94f !important;
  379. }
  380. .xtermBgColor11 {
  381. background-color: #fce94f;
  382. }
  383. .xtermColor12 {
  384. color: #729fcf !important;
  385. }
  386. .xtermBgColor12 {
  387. background-color: #729fcf;
  388. }
  389. .xtermColor13 {
  390. color: #ad7fa8 !important;
  391. }
  392. .xtermBgColor13 {
  393. background-color: #ad7fa8;
  394. }
  395. .xtermColor14 {
  396. color: #34e2e2 !important;
  397. }
  398. .xtermBgColor14 {
  399. background-color: #34e2e2;
  400. }
  401. .xtermColor15 {
  402. color: #eeeeec !important;
  403. }
  404. .xtermBgColor15 {
  405. background-color: #eeeeec;
  406. }
  407. .xtermColor16 {
  408. color: #000000 !important;
  409. }
  410. .xtermBgColor16 {
  411. background-color: #000000;
  412. }
  413. .xtermColor17 {
  414. color: #00005f !important;
  415. }
  416. .xtermBgColor17 {
  417. background-color: #00005f;
  418. }
  419. .xtermColor18 {
  420. color: #000087 !important;
  421. }
  422. .xtermBgColor18 {
  423. background-color: #000087;
  424. }
  425. .xtermColor19 {
  426. color: #0000af !important;
  427. }
  428. .xtermBgColor19 {
  429. background-color: #0000af;
  430. }
  431. .xtermColor20 {
  432. color: #0000d7 !important;
  433. }
  434. .xtermBgColor20 {
  435. background-color: #0000d7;
  436. }
  437. .xtermColor21 {
  438. color: #0000ff !important;
  439. }
  440. .xtermBgColor21 {
  441. background-color: #0000ff;
  442. }
  443. .xtermColor22 {
  444. color: #005f00 !important;
  445. }
  446. .xtermBgColor22 {
  447. background-color: #005f00;
  448. }
  449. .xtermColor23 {
  450. color: #005f5f !important;
  451. }
  452. .xtermBgColor23 {
  453. background-color: #005f5f;
  454. }
  455. .xtermColor24 {
  456. color: #005f87 !important;
  457. }
  458. .xtermBgColor24 {
  459. background-color: #005f87;
  460. }
  461. .xtermColor25 {
  462. color: #005faf !important;
  463. }
  464. .xtermBgColor25 {
  465. background-color: #005faf;
  466. }
  467. .xtermColor26 {
  468. color: #005fd7 !important;
  469. }
  470. .xtermBgColor26 {
  471. background-color: #005fd7;
  472. }
  473. .xtermColor27 {
  474. color: #005fff !important;
  475. }
  476. .xtermBgColor27 {
  477. background-color: #005fff;
  478. }
  479. .xtermColor28 {
  480. color: #008700 !important;
  481. }
  482. .xtermBgColor28 {
  483. background-color: #008700;
  484. }
  485. .xtermColor29 {
  486. color: #00875f !important;
  487. }
  488. .xtermBgColor29 {
  489. background-color: #00875f;
  490. }
  491. .xtermColor30 {
  492. color: #008787 !important;
  493. }
  494. .xtermBgColor30 {
  495. background-color: #008787;
  496. }
  497. .xtermColor31 {
  498. color: #0087af !important;
  499. }
  500. .xtermBgColor31 {
  501. background-color: #0087af;
  502. }
  503. .xtermColor32 {
  504. color: #0087d7 !important;
  505. }
  506. .xtermBgColor32 {
  507. background-color: #0087d7;
  508. }
  509. .xtermColor33 {
  510. color: #0087ff !important;
  511. }
  512. .xtermBgColor33 {
  513. background-color: #0087ff;
  514. }
  515. .xtermColor34 {
  516. color: #00af00 !important;
  517. }
  518. .xtermBgColor34 {
  519. background-color: #00af00;
  520. }
  521. .xtermColor35 {
  522. color: #00af5f !important;
  523. }
  524. .xtermBgColor35 {
  525. background-color: #00af5f;
  526. }
  527. .xtermColor36 {
  528. color: #00af87 !important;
  529. }
  530. .xtermBgColor36 {
  531. background-color: #00af87;
  532. }
  533. .xtermColor37 {
  534. color: #00afaf !important;
  535. }
  536. .xtermBgColor37 {
  537. background-color: #00afaf;
  538. }
  539. .xtermColor38 {
  540. color: #00afd7 !important;
  541. }
  542. .xtermBgColor38 {
  543. background-color: #00afd7;
  544. }
  545. .xtermColor39 {
  546. color: #00afff !important;
  547. }
  548. .xtermBgColor39 {
  549. background-color: #00afff;
  550. }
  551. .xtermColor40 {
  552. color: #00d700 !important;
  553. }
  554. .xtermBgColor40 {
  555. background-color: #00d700;
  556. }
  557. .xtermColor41 {
  558. color: #00d75f !important;
  559. }
  560. .xtermBgColor41 {
  561. background-color: #00d75f;
  562. }
  563. .xtermColor42 {
  564. color: #00d787 !important;
  565. }
  566. .xtermBgColor42 {
  567. background-color: #00d787;
  568. }
  569. .xtermColor43 {
  570. color: #00d7af !important;
  571. }
  572. .xtermBgColor43 {
  573. background-color: #00d7af;
  574. }
  575. .xtermColor44 {
  576. color: #00d7d7 !important;
  577. }
  578. .xtermBgColor44 {
  579. background-color: #00d7d7;
  580. }
  581. .xtermColor45 {
  582. color: #00d7ff !important;
  583. }
  584. .xtermBgColor45 {
  585. background-color: #00d7ff;
  586. }
  587. .xtermColor46 {
  588. color: #00ff00 !important;
  589. }
  590. .xtermBgColor46 {
  591. background-color: #00ff00;
  592. }
  593. .xtermColor47 {
  594. color: #00ff5f !important;
  595. }
  596. .xtermBgColor47 {
  597. background-color: #00ff5f;
  598. }
  599. .xtermColor48 {
  600. color: #00ff87 !important;
  601. }
  602. .xtermBgColor48 {
  603. background-color: #00ff87;
  604. }
  605. .xtermColor49 {
  606. color: #00ffaf !important;
  607. }
  608. .xtermBgColor49 {
  609. background-color: #00ffaf;
  610. }
  611. .xtermColor50 {
  612. color: #00ffd7 !important;
  613. }
  614. .xtermBgColor50 {
  615. background-color: #00ffd7;
  616. }
  617. .xtermColor51 {
  618. color: #00ffff !important;
  619. }
  620. .xtermBgColor51 {
  621. background-color: #00ffff;
  622. }
  623. .xtermColor52 {
  624. color: #5f0000 !important;
  625. }
  626. .xtermBgColor52 {
  627. background-color: #5f0000;
  628. }
  629. .xtermColor53 {
  630. color: #5f005f !important;
  631. }
  632. .xtermBgColor53 {
  633. background-color: #5f005f;
  634. }
  635. .xtermColor54 {
  636. color: #5f0087 !important;
  637. }
  638. .xtermBgColor54 {
  639. background-color: #5f0087;
  640. }
  641. .xtermColor55 {
  642. color: #5f00af !important;
  643. }
  644. .xtermBgColor55 {
  645. background-color: #5f00af;
  646. }
  647. .xtermColor56 {
  648. color: #5f00d7 !important;
  649. }
  650. .xtermBgColor56 {
  651. background-color: #5f00d7;
  652. }
  653. .xtermColor57 {
  654. color: #5f00ff !important;
  655. }
  656. .xtermBgColor57 {
  657. background-color: #5f00ff;
  658. }
  659. .xtermColor58 {
  660. color: #5f5f00 !important;
  661. }
  662. .xtermBgColor58 {
  663. background-color: #5f5f00;
  664. }
  665. .xtermColor59 {
  666. color: #5f5f5f !important;
  667. }
  668. .xtermBgColor59 {
  669. background-color: #5f5f5f;
  670. }
  671. .xtermColor60 {
  672. color: #5f5f87 !important;
  673. }
  674. .xtermBgColor60 {
  675. background-color: #5f5f87;
  676. }
  677. .xtermColor61 {
  678. color: #5f5faf !important;
  679. }
  680. .xtermBgColor61 {
  681. background-color: #5f5faf;
  682. }
  683. .xtermColor62 {
  684. color: #5f5fd7 !important;
  685. }
  686. .xtermBgColor62 {
  687. background-color: #5f5fd7;
  688. }
  689. .xtermColor63 {
  690. color: #5f5fff !important;
  691. }
  692. .xtermBgColor63 {
  693. background-color: #5f5fff;
  694. }
  695. .xtermColor64 {
  696. color: #5f8700 !important;
  697. }
  698. .xtermBgColor64 {
  699. background-color: #5f8700;
  700. }
  701. .xtermColor65 {
  702. color: #5f875f !important;
  703. }
  704. .xtermBgColor65 {
  705. background-color: #5f875f;
  706. }
  707. .xtermColor66 {
  708. color: #5f8787 !important;
  709. }
  710. .xtermBgColor66 {
  711. background-color: #5f8787;
  712. }
  713. .xtermColor67 {
  714. color: #5f87af !important;
  715. }
  716. .xtermBgColor67 {
  717. background-color: #5f87af;
  718. }
  719. .xtermColor68 {
  720. color: #5f87d7 !important;
  721. }
  722. .xtermBgColor68 {
  723. background-color: #5f87d7;
  724. }
  725. .xtermColor69 {
  726. color: #5f87ff !important;
  727. }
  728. .xtermBgColor69 {
  729. background-color: #5f87ff;
  730. }
  731. .xtermColor70 {
  732. color: #5faf00 !important;
  733. }
  734. .xtermBgColor70 {
  735. background-color: #5faf00;
  736. }
  737. .xtermColor71 {
  738. color: #5faf5f !important;
  739. }
  740. .xtermBgColor71 {
  741. background-color: #5faf5f;
  742. }
  743. .xtermColor72 {
  744. color: #5faf87 !important;
  745. }
  746. .xtermBgColor72 {
  747. background-color: #5faf87;
  748. }
  749. .xtermColor73 {
  750. color: #5fafaf !important;
  751. }
  752. .xtermBgColor73 {
  753. background-color: #5fafaf;
  754. }
  755. .xtermColor74 {
  756. color: #5fafd7 !important;
  757. }
  758. .xtermBgColor74 {
  759. background-color: #5fafd7;
  760. }
  761. .xtermColor75 {
  762. color: #5fafff !important;
  763. }
  764. .xtermBgColor75 {
  765. background-color: #5fafff;
  766. }
  767. .xtermColor76 {
  768. color: #5fd700 !important;
  769. }
  770. .xtermBgColor76 {
  771. background-color: #5fd700;
  772. }
  773. .xtermColor77 {
  774. color: #5fd75f !important;
  775. }
  776. .xtermBgColor77 {
  777. background-color: #5fd75f;
  778. }
  779. .xtermColor78 {
  780. color: #5fd787 !important;
  781. }
  782. .xtermBgColor78 {
  783. background-color: #5fd787;
  784. }
  785. .xtermColor79 {
  786. color: #5fd7af !important;
  787. }
  788. .xtermBgColor79 {
  789. background-color: #5fd7af;
  790. }
  791. .xtermColor80 {
  792. color: #5fd7d7 !important;
  793. }
  794. .xtermBgColor80 {
  795. background-color: #5fd7d7;
  796. }
  797. .xtermColor81 {
  798. color: #5fd7ff !important;
  799. }
  800. .xtermBgColor81 {
  801. background-color: #5fd7ff;
  802. }
  803. .xtermColor82 {
  804. color: #5fff00 !important;
  805. }
  806. .xtermBgColor82 {
  807. background-color: #5fff00;
  808. }
  809. .xtermColor83 {
  810. color: #5fff5f !important;
  811. }
  812. .xtermBgColor83 {
  813. background-color: #5fff5f;
  814. }
  815. .xtermColor84 {
  816. color: #5fff87 !important;
  817. }
  818. .xtermBgColor84 {
  819. background-color: #5fff87;
  820. }
  821. .xtermColor85 {
  822. color: #5fffaf !important;
  823. }
  824. .xtermBgColor85 {
  825. background-color: #5fffaf;
  826. }
  827. .xtermColor86 {
  828. color: #5fffd7 !important;
  829. }
  830. .xtermBgColor86 {
  831. background-color: #5fffd7;
  832. }
  833. .xtermColor87 {
  834. color: #5fffff !important;
  835. }
  836. .xtermBgColor87 {
  837. background-color: #5fffff;
  838. }
  839. .xtermColor88 {
  840. color: #870000 !important;
  841. }
  842. .xtermBgColor88 {
  843. background-color: #870000;
  844. }
  845. .xtermColor89 {
  846. color: #87005f !important;
  847. }
  848. .xtermBgColor89 {
  849. background-color: #87005f;
  850. }
  851. .xtermColor90 {
  852. color: #870087 !important;
  853. }
  854. .xtermBgColor90 {
  855. background-color: #870087;
  856. }
  857. .xtermColor91 {
  858. color: #8700af !important;
  859. }
  860. .xtermBgColor91 {
  861. background-color: #8700af;
  862. }
  863. .xtermColor92 {
  864. color: #8700d7 !important;
  865. }
  866. .xtermBgColor92 {
  867. background-color: #8700d7;
  868. }
  869. .xtermColor93 {
  870. color: #8700ff !important;
  871. }
  872. .xtermBgColor93 {
  873. background-color: #8700ff;
  874. }
  875. .xtermColor94 {
  876. color: #875f00 !important;
  877. }
  878. .xtermBgColor94 {
  879. background-color: #875f00;
  880. }
  881. .xtermColor95 {
  882. color: #875f5f !important;
  883. }
  884. .xtermBgColor95 {
  885. background-color: #875f5f;
  886. }
  887. .xtermColor96 {
  888. color: #875f87 !important;
  889. }
  890. .xtermBgColor96 {
  891. background-color: #875f87;
  892. }
  893. .xtermColor97 {
  894. color: #875faf !important;
  895. }
  896. .xtermBgColor97 {
  897. background-color: #875faf;
  898. }
  899. .xtermColor98 {
  900. color: #875fd7 !important;
  901. }
  902. .xtermBgColor98 {
  903. background-color: #875fd7;
  904. }
  905. .xtermColor99 {
  906. color: #875fff !important;
  907. }
  908. .xtermBgColor99 {
  909. background-color: #875fff;
  910. }
  911. .xtermColor100 {
  912. color: #878700 !important;
  913. }
  914. .xtermBgColor100 {
  915. background-color: #878700;
  916. }
  917. .xtermColor101 {
  918. color: #87875f !important;
  919. }
  920. .xtermBgColor101 {
  921. background-color: #87875f;
  922. }
  923. .xtermColor102 {
  924. color: #878787 !important;
  925. }
  926. .xtermBgColor102 {
  927. background-color: #878787;
  928. }
  929. .xtermColor103 {
  930. color: #8787af !important;
  931. }
  932. .xtermBgColor103 {
  933. background-color: #8787af;
  934. }
  935. .xtermColor104 {
  936. color: #8787d7 !important;
  937. }
  938. .xtermBgColor104 {
  939. background-color: #8787d7;
  940. }
  941. .xtermColor105 {
  942. color: #8787ff !important;
  943. }
  944. .xtermBgColor105 {
  945. background-color: #8787ff;
  946. }
  947. .xtermColor106 {
  948. color: #87af00 !important;
  949. }
  950. .xtermBgColor106 {
  951. background-color: #87af00;
  952. }
  953. .xtermColor107 {
  954. color: #87af5f !important;
  955. }
  956. .xtermBgColor107 {
  957. background-color: #87af5f;
  958. }
  959. .xtermColor108 {
  960. color: #87af87 !important;
  961. }
  962. .xtermBgColor108 {
  963. background-color: #87af87;
  964. }
  965. .xtermColor109 {
  966. color: #87afaf !important;
  967. }
  968. .xtermBgColor109 {
  969. background-color: #87afaf;
  970. }
  971. .xtermColor110 {
  972. color: #87afd7 !important;
  973. }
  974. .xtermBgColor110 {
  975. background-color: #87afd7;
  976. }
  977. .xtermColor111 {
  978. color: #87afff !important;
  979. }
  980. .xtermBgColor111 {
  981. background-color: #87afff;
  982. }
  983. .xtermColor112 {
  984. color: #87d700 !important;
  985. }
  986. .xtermBgColor112 {
  987. background-color: #87d700;
  988. }
  989. .xtermColor113 {
  990. color: #87d75f !important;
  991. }
  992. .xtermBgColor113 {
  993. background-color: #87d75f;
  994. }
  995. .xtermColor114 {
  996. color: #87d787 !important;
  997. }
  998. .xtermBgColor114 {
  999. background-color: #87d787;
  1000. }
  1001. .xtermColor115 {
  1002. color: #87d7af !important;
  1003. }
  1004. .xtermBgColor115 {
  1005. background-color: #87d7af;
  1006. }
  1007. .xtermColor116 {
  1008. color: #87d7d7 !important;
  1009. }
  1010. .xtermBgColor116 {
  1011. background-color: #87d7d7;
  1012. }
  1013. .xtermColor117 {
  1014. color: #87d7ff !important;
  1015. }
  1016. .xtermBgColor117 {
  1017. background-color: #87d7ff;
  1018. }
  1019. .xtermColor118 {
  1020. color: #87ff00 !important;
  1021. }
  1022. .xtermBgColor118 {
  1023. background-color: #87ff00;
  1024. }
  1025. .xtermColor119 {
  1026. color: #87ff5f !important;
  1027. }
  1028. .xtermBgColor119 {
  1029. background-color: #87ff5f;
  1030. }
  1031. .xtermColor120 {
  1032. color: #87ff87 !important;
  1033. }
  1034. .xtermBgColor120 {
  1035. background-color: #87ff87;
  1036. }
  1037. .xtermColor121 {
  1038. color: #87ffaf !important;
  1039. }
  1040. .xtermBgColor121 {
  1041. background-color: #87ffaf;
  1042. }
  1043. .xtermColor122 {
  1044. color: #87ffd7 !important;
  1045. }
  1046. .xtermBgColor122 {
  1047. background-color: #87ffd7;
  1048. }
  1049. .xtermColor123 {
  1050. color: #87ffff !important;
  1051. }
  1052. .xtermBgColor123 {
  1053. background-color: #87ffff;
  1054. }
  1055. .xtermColor124 {
  1056. color: #af0000 !important;
  1057. }
  1058. .xtermBgColor124 {
  1059. background-color: #af0000;
  1060. }
  1061. .xtermColor125 {
  1062. color: #af005f !important;
  1063. }
  1064. .xtermBgColor125 {
  1065. background-color: #af005f;
  1066. }
  1067. .xtermColor126 {
  1068. color: #af0087 !important;
  1069. }
  1070. .xtermBgColor126 {
  1071. background-color: #af0087;
  1072. }
  1073. .xtermColor127 {
  1074. color: #af00af !important;
  1075. }
  1076. .xtermBgColor127 {
  1077. background-color: #af00af;
  1078. }
  1079. .xtermColor128 {
  1080. color: #af00d7 !important;
  1081. }
  1082. .xtermBgColor128 {
  1083. background-color: #af00d7;
  1084. }
  1085. .xtermColor129 {
  1086. color: #af00ff !important;
  1087. }
  1088. .xtermBgColor129 {
  1089. background-color: #af00ff;
  1090. }
  1091. .xtermColor130 {
  1092. color: #af5f00 !important;
  1093. }
  1094. .xtermBgColor130 {
  1095. background-color: #af5f00;
  1096. }
  1097. .xtermColor131 {
  1098. color: #af5f5f !important;
  1099. }
  1100. .xtermBgColor131 {
  1101. background-color: #af5f5f;
  1102. }
  1103. .xtermColor132 {
  1104. color: #af5f87 !important;
  1105. }
  1106. .xtermBgColor132 {
  1107. background-color: #af5f87;
  1108. }
  1109. .xtermColor133 {
  1110. color: #af5faf !important;
  1111. }
  1112. .xtermBgColor133 {
  1113. background-color: #af5faf;
  1114. }
  1115. .xtermColor134 {
  1116. color: #af5fd7 !important;
  1117. }
  1118. .xtermBgColor134 {
  1119. background-color: #af5fd7;
  1120. }
  1121. .xtermColor135 {
  1122. color: #af5fff !important;
  1123. }
  1124. .xtermBgColor135 {
  1125. background-color: #af5fff;
  1126. }
  1127. .xtermColor136 {
  1128. color: #af8700 !important;
  1129. }
  1130. .xtermBgColor136 {
  1131. background-color: #af8700;
  1132. }
  1133. .xtermColor137 {
  1134. color: #af875f !important;
  1135. }
  1136. .xtermBgColor137 {
  1137. background-color: #af875f;
  1138. }
  1139. .xtermColor138 {
  1140. color: #af8787 !important;
  1141. }
  1142. .xtermBgColor138 {
  1143. background-color: #af8787;
  1144. }
  1145. .xtermColor139 {
  1146. color: #af87af !important;
  1147. }
  1148. .xtermBgColor139 {
  1149. background-color: #af87af;
  1150. }
  1151. .xtermColor140 {
  1152. color: #af87d7 !important;
  1153. }
  1154. .xtermBgColor140 {
  1155. background-color: #af87d7;
  1156. }
  1157. .xtermColor141 {
  1158. color: #af87ff !important;
  1159. }
  1160. .xtermBgColor141 {
  1161. background-color: #af87ff;
  1162. }
  1163. .xtermColor142 {
  1164. color: #afaf00 !important;
  1165. }
  1166. .xtermBgColor142 {
  1167. background-color: #afaf00;
  1168. }
  1169. .xtermColor143 {
  1170. color: #afaf5f !important;
  1171. }
  1172. .xtermBgColor143 {
  1173. background-color: #afaf5f;
  1174. }
  1175. .xtermColor144 {
  1176. color: #afaf87 !important;
  1177. }
  1178. .xtermBgColor144 {
  1179. background-color: #afaf87;
  1180. }
  1181. .xtermColor145 {
  1182. color: #afafaf !important;
  1183. }
  1184. .xtermBgColor145 {
  1185. background-color: #afafaf;
  1186. }
  1187. .xtermColor146 {
  1188. color: #afafd7 !important;
  1189. }
  1190. .xtermBgColor146 {
  1191. background-color: #afafd7;
  1192. }
  1193. .xtermColor147 {
  1194. color: #afafff !important;
  1195. }
  1196. .xtermBgColor147 {
  1197. background-color: #afafff;
  1198. }
  1199. .xtermColor148 {
  1200. color: #afd700 !important;
  1201. }
  1202. .xtermBgColor148 {
  1203. background-color: #afd700;
  1204. }
  1205. .xtermColor149 {
  1206. color: #afd75f !important;
  1207. }
  1208. .xtermBgColor149 {
  1209. background-color: #afd75f;
  1210. }
  1211. .xtermColor150 {
  1212. color: #afd787 !important;
  1213. }
  1214. .xtermBgColor150 {
  1215. background-color: #afd787;
  1216. }
  1217. .xtermColor151 {
  1218. color: #afd7af !important;
  1219. }
  1220. .xtermBgColor151 {
  1221. background-color: #afd7af;
  1222. }
  1223. .xtermColor152 {
  1224. color: #afd7d7 !important;
  1225. }
  1226. .xtermBgColor152 {
  1227. background-color: #afd7d7;
  1228. }
  1229. .xtermColor153 {
  1230. color: #afd7ff !important;
  1231. }
  1232. .xtermBgColor153 {
  1233. background-color: #afd7ff;
  1234. }
  1235. .xtermColor154 {
  1236. color: #afff00 !important;
  1237. }
  1238. .xtermBgColor154 {
  1239. background-color: #afff00;
  1240. }
  1241. .xtermColor155 {
  1242. color: #afff5f !important;
  1243. }
  1244. .xtermBgColor155 {
  1245. background-color: #afff5f;
  1246. }
  1247. .xtermColor156 {
  1248. color: #afff87 !important;
  1249. }
  1250. .xtermBgColor156 {
  1251. background-color: #afff87;
  1252. }
  1253. .xtermColor157 {
  1254. color: #afffaf !important;
  1255. }
  1256. .xtermBgColor157 {
  1257. background-color: #afffaf;
  1258. }
  1259. .xtermColor158 {
  1260. color: #afffd7 !important;
  1261. }
  1262. .xtermBgColor158 {
  1263. background-color: #afffd7;
  1264. }
  1265. .xtermColor159 {
  1266. color: #afffff !important;
  1267. }
  1268. .xtermBgColor159 {
  1269. background-color: #afffff;
  1270. }
  1271. .xtermColor160 {
  1272. color: #d70000 !important;
  1273. }
  1274. .xtermBgColor160 {
  1275. background-color: #d70000;
  1276. }
  1277. .xtermColor161 {
  1278. color: #d7005f !important;
  1279. }
  1280. .xtermBgColor161 {
  1281. background-color: #d7005f;
  1282. }
  1283. .xtermColor162 {
  1284. color: #d70087 !important;
  1285. }
  1286. .xtermBgColor162 {
  1287. background-color: #d70087;
  1288. }
  1289. .xtermColor163 {
  1290. color: #d700af !important;
  1291. }
  1292. .xtermBgColor163 {
  1293. background-color: #d700af;
  1294. }
  1295. .xtermColor164 {
  1296. color: #d700d7 !important;
  1297. }
  1298. .xtermBgColor164 {
  1299. background-color: #d700d7;
  1300. }
  1301. .xtermColor165 {
  1302. color: #d700ff !important;
  1303. }
  1304. .xtermBgColor165 {
  1305. background-color: #d700ff;
  1306. }
  1307. .xtermColor166 {
  1308. color: #d75f00 !important;
  1309. }
  1310. .xtermBgColor166 {
  1311. background-color: #d75f00;
  1312. }
  1313. .xtermColor167 {
  1314. color: #d75f5f !important;
  1315. }
  1316. .xtermBgColor167 {
  1317. background-color: #d75f5f;
  1318. }
  1319. .xtermColor168 {
  1320. color: #d75f87 !important;
  1321. }
  1322. .xtermBgColor168 {
  1323. background-color: #d75f87;
  1324. }
  1325. .xtermColor169 {
  1326. color: #d75faf !important;
  1327. }
  1328. .xtermBgColor169 {
  1329. background-color: #d75faf;
  1330. }
  1331. .xtermColor170 {
  1332. color: #d75fd7 !important;
  1333. }
  1334. .xtermBgColor170 {
  1335. background-color: #d75fd7;
  1336. }
  1337. .xtermColor171 {
  1338. color: #d75fff !important;
  1339. }
  1340. .xtermBgColor171 {
  1341. background-color: #d75fff;
  1342. }
  1343. .xtermColor172 {
  1344. color: #d78700 !important;
  1345. }
  1346. .xtermBgColor172 {
  1347. background-color: #d78700;
  1348. }
  1349. .xtermColor173 {
  1350. color: #d7875f !important;
  1351. }
  1352. .xtermBgColor173 {
  1353. background-color: #d7875f;
  1354. }
  1355. .xtermColor174 {
  1356. color: #d78787 !important;
  1357. }
  1358. .xtermBgColor174 {
  1359. background-color: #d78787;
  1360. }
  1361. .xtermColor175 {
  1362. color: #d787af !important;
  1363. }
  1364. .xtermBgColor175 {
  1365. background-color: #d787af;
  1366. }
  1367. .xtermColor176 {
  1368. color: #d787d7 !important;
  1369. }
  1370. .xtermBgColor176 {
  1371. background-color: #d787d7;
  1372. }
  1373. .xtermColor177 {
  1374. color: #d787ff !important;
  1375. }
  1376. .xtermBgColor177 {
  1377. background-color: #d787ff;
  1378. }
  1379. .xtermColor178 {
  1380. color: #d7af00 !important;
  1381. }
  1382. .xtermBgColor178 {
  1383. background-color: #d7af00;
  1384. }
  1385. .xtermColor179 {
  1386. color: #d7af5f !important;
  1387. }
  1388. .xtermBgColor179 {
  1389. background-color: #d7af5f;
  1390. }
  1391. .xtermColor180 {
  1392. color: #d7af87 !important;
  1393. }
  1394. .xtermBgColor180 {
  1395. background-color: #d7af87;
  1396. }
  1397. .xtermColor181 {
  1398. color: #d7afaf !important;
  1399. }
  1400. .xtermBgColor181 {
  1401. background-color: #d7afaf;
  1402. }
  1403. .xtermColor182 {
  1404. color: #d7afd7 !important;
  1405. }
  1406. .xtermBgColor182 {
  1407. background-color: #d7afd7;
  1408. }
  1409. .xtermColor183 {
  1410. color: #d7afff !important;
  1411. }
  1412. .xtermBgColor183 {
  1413. background-color: #d7afff;
  1414. }
  1415. .xtermColor184 {
  1416. color: #d7d700 !important;
  1417. }
  1418. .xtermBgColor184 {
  1419. background-color: #d7d700;
  1420. }
  1421. .xtermColor185 {
  1422. color: #d7d75f !important;
  1423. }
  1424. .xtermBgColor185 {
  1425. background-color: #d7d75f;
  1426. }
  1427. .xtermColor186 {
  1428. color: #d7d787 !important;
  1429. }
  1430. .xtermBgColor186 {
  1431. background-color: #d7d787;
  1432. }
  1433. .xtermColor187 {
  1434. color: #d7d7af !important;
  1435. }
  1436. .xtermBgColor187 {
  1437. background-color: #d7d7af;
  1438. }
  1439. .xtermColor188 {
  1440. color: #d7d7d7 !important;
  1441. }
  1442. .xtermBgColor188 {
  1443. background-color: #d7d7d7;
  1444. }
  1445. .xtermColor189 {
  1446. color: #d7d7ff !important;
  1447. }
  1448. .xtermBgColor189 {
  1449. background-color: #d7d7ff;
  1450. }
  1451. .xtermColor190 {
  1452. color: #d7ff00 !important;
  1453. }
  1454. .xtermBgColor190 {
  1455. background-color: #d7ff00;
  1456. }
  1457. .xtermColor191 {
  1458. color: #d7ff5f !important;
  1459. }
  1460. .xtermBgColor191 {
  1461. background-color: #d7ff5f;
  1462. }
  1463. .xtermColor192 {
  1464. color: #d7ff87 !important;
  1465. }
  1466. .xtermBgColor192 {
  1467. background-color: #d7ff87;
  1468. }
  1469. .xtermColor193 {
  1470. color: #d7ffaf !important;
  1471. }
  1472. .xtermBgColor193 {
  1473. background-color: #d7ffaf;
  1474. }
  1475. .xtermColor194 {
  1476. color: #d7ffd7 !important;
  1477. }
  1478. .xtermBgColor194 {
  1479. background-color: #d7ffd7;
  1480. }
  1481. .xtermColor195 {
  1482. color: #d7ffff !important;
  1483. }
  1484. .xtermBgColor195 {
  1485. background-color: #d7ffff;
  1486. }
  1487. .xtermColor196 {
  1488. color: #ff0000 !important;
  1489. }
  1490. .xtermBgColor196 {
  1491. background-color: #ff0000;
  1492. }
  1493. .xtermColor197 {
  1494. color: #ff005f !important;
  1495. }
  1496. .xtermBgColor197 {
  1497. background-color: #ff005f;
  1498. }
  1499. .xtermColor198 {
  1500. color: #ff0087 !important;
  1501. }
  1502. .xtermBgColor198 {
  1503. background-color: #ff0087;
  1504. }
  1505. .xtermColor199 {
  1506. color: #ff00af !important;
  1507. }
  1508. .xtermBgColor199 {
  1509. background-color: #ff00af;
  1510. }
  1511. .xtermColor200 {
  1512. color: #ff00d7 !important;
  1513. }
  1514. .xtermBgColor200 {
  1515. background-color: #ff00d7;
  1516. }
  1517. .xtermColor201 {
  1518. color: #ff00ff !important;
  1519. }
  1520. .xtermBgColor201 {
  1521. background-color: #ff00ff;
  1522. }
  1523. .xtermColor202 {
  1524. color: #ff5f00 !important;
  1525. }
  1526. .xtermBgColor202 {
  1527. background-color: #ff5f00;
  1528. }
  1529. .xtermColor203 {
  1530. color: #ff5f5f !important;
  1531. }
  1532. .xtermBgColor203 {
  1533. background-color: #ff5f5f;
  1534. }
  1535. .xtermColor204 {
  1536. color: #ff5f87 !important;
  1537. }
  1538. .xtermBgColor204 {
  1539. background-color: #ff5f87;
  1540. }
  1541. .xtermColor205 {
  1542. color: #ff5faf !important;
  1543. }
  1544. .xtermBgColor205 {
  1545. background-color: #ff5faf;
  1546. }
  1547. .xtermColor206 {
  1548. color: #ff5fd7 !important;
  1549. }
  1550. .xtermBgColor206 {
  1551. background-color: #ff5fd7;
  1552. }
  1553. .xtermColor207 {
  1554. color: #ff5fff !important;
  1555. }
  1556. .xtermBgColor207 {
  1557. background-color: #ff5fff;
  1558. }
  1559. .xtermColor208 {
  1560. color: #ff8700 !important;
  1561. }
  1562. .xtermBgColor208 {
  1563. background-color: #ff8700;
  1564. }
  1565. .xtermColor209 {
  1566. color: #ff875f !important;
  1567. }
  1568. .xtermBgColor209 {
  1569. background-color: #ff875f;
  1570. }
  1571. .xtermColor210 {
  1572. color: #ff8787 !important;
  1573. }
  1574. .xtermBgColor210 {
  1575. background-color: #ff8787;
  1576. }
  1577. .xtermColor211 {
  1578. color: #ff87af !important;
  1579. }
  1580. .xtermBgColor211 {
  1581. background-color: #ff87af;
  1582. }
  1583. .xtermColor212 {
  1584. color: #ff87d7 !important;
  1585. }
  1586. .xtermBgColor212 {
  1587. background-color: #ff87d7;
  1588. }
  1589. .xtermColor213 {
  1590. color: #ff87ff !important;
  1591. }
  1592. .xtermBgColor213 {
  1593. background-color: #ff87ff;
  1594. }
  1595. .xtermColor214 {
  1596. color: #ffaf00 !important;
  1597. }
  1598. .xtermBgColor214 {
  1599. background-color: #ffaf00;
  1600. }
  1601. .xtermColor215 {
  1602. color: #ffaf5f !important;
  1603. }
  1604. .xtermBgColor215 {
  1605. background-color: #ffaf5f;
  1606. }
  1607. .xtermColor216 {
  1608. color: #ffaf87 !important;
  1609. }
  1610. .xtermBgColor216 {
  1611. background-color: #ffaf87;
  1612. }
  1613. .xtermColor217 {
  1614. color: #ffafaf !important;
  1615. }
  1616. .xtermBgColor217 {
  1617. background-color: #ffafaf;
  1618. }
  1619. .xtermColor218 {
  1620. color: #ffafd7 !important;
  1621. }
  1622. .xtermBgColor218 {
  1623. background-color: #ffafd7;
  1624. }
  1625. .xtermColor219 {
  1626. color: #ffafff !important;
  1627. }
  1628. .xtermBgColor219 {
  1629. background-color: #ffafff;
  1630. }
  1631. .xtermColor220 {
  1632. color: #ffd700 !important;
  1633. }
  1634. .xtermBgColor220 {
  1635. background-color: #ffd700;
  1636. }
  1637. .xtermColor221 {
  1638. color: #ffd75f !important;
  1639. }
  1640. .xtermBgColor221 {
  1641. background-color: #ffd75f;
  1642. }
  1643. .xtermColor222 {
  1644. color: #ffd787 !important;
  1645. }
  1646. .xtermBgColor222 {
  1647. background-color: #ffd787;
  1648. }
  1649. .xtermColor223 {
  1650. color: #ffd7af !important;
  1651. }
  1652. .xtermBgColor223 {
  1653. background-color: #ffd7af;
  1654. }
  1655. .xtermColor224 {
  1656. color: #ffd7d7 !important;
  1657. }
  1658. .xtermBgColor224 {
  1659. background-color: #ffd7d7;
  1660. }
  1661. .xtermColor225 {
  1662. color: #ffd7ff !important;
  1663. }
  1664. .xtermBgColor225 {
  1665. background-color: #ffd7ff;
  1666. }
  1667. .xtermColor226 {
  1668. color: #ffff00 !important;
  1669. }
  1670. .xtermBgColor226 {
  1671. background-color: #ffff00;
  1672. }
  1673. .xtermColor227 {
  1674. color: #ffff5f !important;
  1675. }
  1676. .xtermBgColor227 {
  1677. background-color: #ffff5f;
  1678. }
  1679. .xtermColor228 {
  1680. color: #ffff87 !important;
  1681. }
  1682. .xtermBgColor228 {
  1683. background-color: #ffff87;
  1684. }
  1685. .xtermColor229 {
  1686. color: #ffffaf !important;
  1687. }
  1688. .xtermBgColor229 {
  1689. background-color: #ffffaf;
  1690. }
  1691. .xtermColor230 {
  1692. color: #ffffd7 !important;
  1693. }
  1694. .xtermBgColor230 {
  1695. background-color: #ffffd7;
  1696. }
  1697. .xtermColor231 {
  1698. color: #ffffff !important;
  1699. }
  1700. .xtermBgColor231 {
  1701. background-color: #ffffff;
  1702. }
  1703. .xtermColor232 {
  1704. color: #080808 !important;
  1705. }
  1706. .xtermBgColor232 {
  1707. background-color: #080808;
  1708. }
  1709. .xtermColor233 {
  1710. color: #121212 !important;
  1711. }
  1712. .xtermBgColor233 {
  1713. background-color: #121212;
  1714. }
  1715. .xtermColor234 {
  1716. color: #1c1c1c !important;
  1717. }
  1718. .xtermBgColor234 {
  1719. background-color: #1c1c1c;
  1720. }
  1721. .xtermColor235 {
  1722. color: #262626 !important;
  1723. }
  1724. .xtermBgColor235 {
  1725. background-color: #262626;
  1726. }
  1727. .xtermColor236 {
  1728. color: #303030 !important;
  1729. }
  1730. .xtermBgColor236 {
  1731. background-color: #303030;
  1732. }
  1733. .xtermColor237 {
  1734. color: #3a3a3a !important;
  1735. }
  1736. .xtermBgColor237 {
  1737. background-color: #3a3a3a;
  1738. }
  1739. .xtermColor238 {
  1740. color: #444444 !important;
  1741. }
  1742. .xtermBgColor238 {
  1743. background-color: #444444;
  1744. }
  1745. .xtermColor239 {
  1746. color: #4e4e4e !important;
  1747. }
  1748. .xtermBgColor239 {
  1749. background-color: #4e4e4e;
  1750. }
  1751. .xtermColor240 {
  1752. color: #585858 !important;
  1753. }
  1754. .xtermBgColor240 {
  1755. background-color: #585858;
  1756. }
  1757. .xtermColor241 {
  1758. color: #626262 !important;
  1759. }
  1760. .xtermBgColor241 {
  1761. background-color: #626262;
  1762. }
  1763. .xtermColor242 {
  1764. color: #6c6c6c !important;
  1765. }
  1766. .xtermBgColor242 {
  1767. background-color: #6c6c6c;
  1768. }
  1769. .xtermColor243 {
  1770. color: #767676 !important;
  1771. }
  1772. .xtermBgColor243 {
  1773. background-color: #767676;
  1774. }
  1775. .xtermColor244 {
  1776. color: #808080 !important;
  1777. }
  1778. .xtermBgColor244 {
  1779. background-color: #808080;
  1780. }
  1781. .xtermColor245 {
  1782. color: #8a8a8a !important;
  1783. }
  1784. .xtermBgColor245 {
  1785. background-color: #8a8a8a;
  1786. }
  1787. .xtermColor246 {
  1788. color: #949494 !important;
  1789. }
  1790. .xtermBgColor246 {
  1791. background-color: #949494;
  1792. }
  1793. .xtermColor247 {
  1794. color: #9e9e9e !important;
  1795. }
  1796. .xtermBgColor247 {
  1797. background-color: #9e9e9e;
  1798. }
  1799. .xtermColor248 {
  1800. color: #a8a8a8 !important;
  1801. }
  1802. .xtermBgColor248 {
  1803. background-color: #a8a8a8;
  1804. }
  1805. .xtermColor249 {
  1806. color: #b2b2b2 !important;
  1807. }
  1808. .xtermBgColor249 {
  1809. background-color: #b2b2b2;
  1810. }
  1811. .xtermColor250 {
  1812. color: #bcbcbc !important;
  1813. }
  1814. .xtermBgColor250 {
  1815. background-color: #bcbcbc;
  1816. }
  1817. .xtermColor251 {
  1818. color: #c6c6c6 !important;
  1819. }
  1820. .xtermBgColor251 {
  1821. background-color: #c6c6c6;
  1822. }
  1823. .xtermColor252 {
  1824. color: #d0d0d0 !important;
  1825. }
  1826. .xtermBgColor252 {
  1827. background-color: #d0d0d0;
  1828. }
  1829. .xtermColor253 {
  1830. color: #dadada !important;
  1831. }
  1832. .xtermBgColor253 {
  1833. background-color: #dadada;
  1834. }
  1835. .xtermColor254 {
  1836. color: #e4e4e4 !important;
  1837. }
  1838. .xtermBgColor254 {
  1839. background-color: #e4e4e4;
  1840. }
  1841. .xtermColor255 {
  1842. color: #eeeeee !important;
  1843. }
  1844. .xtermBgColor255 {
  1845. background-color: #eeeeee;
  1846. }