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.

141 lines
2.5 KiB

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