You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

142 lines
2.3 KiB

2 months ago
  1. /*
  2. Name: Moxer Theme
  3. Author: Mattia Astorino (http://github.com/equinusocio)
  4. Website: https://github.com/moxer-theme/moxer-code
  5. */
  6. .cm-s-moxer.CodeMirror {
  7. background-color: #090A0F;
  8. color: #8E95B4;
  9. line-height: 1.8;
  10. }
  11. .cm-s-moxer .CodeMirror-gutters {
  12. background: #090A0F;
  13. color: #35394B;
  14. border: none;
  15. }
  16. .cm-s-moxer .CodeMirror-guttermarker,
  17. .cm-s-moxer .CodeMirror-guttermarker-subtle,
  18. .cm-s-moxer .CodeMirror-linenumber {
  19. color: #35394B;
  20. }
  21. .cm-s-moxer .CodeMirror-cursor {
  22. border-left: 1px solid #FFCC00;
  23. }
  24. .cm-s-moxer div.CodeMirror-selected {
  25. background: rgba(128, 203, 196, 0.2);
  26. }
  27. .cm-s-moxer.CodeMirror-focused div.CodeMirror-selected {
  28. background: #212431;
  29. }
  30. .cm-s-moxer .CodeMirror-line::selection,
  31. .cm-s-moxer .CodeMirror-line>span::selection,
  32. .cm-s-moxer .CodeMirror-line>span>span::selection {
  33. background: #212431;
  34. }
  35. .cm-s-moxer .CodeMirror-line::-moz-selection,
  36. .cm-s-moxer .CodeMirror-line>span::-moz-selection,
  37. .cm-s-moxer .CodeMirror-line>span>span::-moz-selection {
  38. background: #212431;
  39. }
  40. .cm-s-moxer .CodeMirror-activeline-background,
  41. .cm-s-moxer .CodeMirror-activeline-gutter .CodeMirror-linenumber {
  42. background: rgba(33, 36, 49, 0.5);
  43. }
  44. .cm-s-moxer .cm-keyword {
  45. color: #D46C6C;
  46. }
  47. .cm-s-moxer .cm-operator {
  48. color: #D46C6C;
  49. }
  50. .cm-s-moxer .cm-variable-2 {
  51. color: #81C5DA;
  52. }
  53. .cm-s-moxer .cm-variable-3,
  54. .cm-s-moxer .cm-type {
  55. color: #f07178;
  56. }
  57. .cm-s-moxer .cm-builtin {
  58. color: #FFCB6B;
  59. }
  60. .cm-s-moxer .cm-atom {
  61. color: #A99BE2;
  62. }
  63. .cm-s-moxer .cm-number {
  64. color: #7CA4C0;
  65. }
  66. .cm-s-moxer .cm-def {
  67. color: #F5DFA5;
  68. }
  69. .cm-s-moxer .CodeMirror-line .cm-def ~ .cm-def {
  70. color: #81C5DA;
  71. }
  72. .cm-s-moxer .cm-string {
  73. color: #B2E4AE;
  74. }
  75. .cm-s-moxer .cm-string-2 {
  76. color: #f07178;
  77. }
  78. .cm-s-moxer .cm-comment {
  79. color: #3F445A;
  80. }
  81. .cm-s-moxer .cm-variable {
  82. color: #8E95B4;
  83. }
  84. .cm-s-moxer .cm-tag {
  85. color: #FF5370;
  86. }
  87. .cm-s-moxer .cm-meta {
  88. color: #FFCB6B;
  89. }
  90. .cm-s-moxer .cm-attribute {
  91. color: #C792EA;
  92. }
  93. .cm-s-moxer .cm-property {
  94. color: #81C5DA;
  95. }
  96. .cm-s-moxer .cm-qualifier {
  97. color: #DECB6B;
  98. }
  99. .cm-s-moxer .cm-variable-3,
  100. .cm-s-moxer .cm-type {
  101. color: #DECB6B;
  102. }
  103. .cm-s-moxer .cm-error {
  104. color: rgba(255, 255, 255, 1.0);
  105. background-color: #FF5370;
  106. }
  107. .cm-s-moxer .CodeMirror-matchingbracket {
  108. text-decoration: underline;
  109. color: white !important;
  110. }