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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /* Based on https://github.com/dempfi/ayu */
  2. .cm-s-ayu-dark.CodeMirror {
  3. background: #0a0e14;
  4. color: #b3b1ad;
  5. }
  6. .cm-s-ayu-dark div.CodeMirror-selected {
  7. background: #273747;
  8. }
  9. .cm-s-ayu-dark .CodeMirror-line::selection, .cm-s-ayu-dark .CodeMirror-line > span::selection, .cm-s-ayu-dark .CodeMirror-line > span > span::selection {
  10. background: rgba(39, 55, 71, 99);
  11. }
  12. .cm-s-ayu-dark .CodeMirror-line::-moz-selection, .cm-s-ayu-dark .CodeMirror-line > span::-moz-selection, .cm-s-ayu-dark .CodeMirror-line > span > span::-moz-selection {
  13. background: rgba(39, 55, 71, 99);
  14. }
  15. .cm-s-ayu-dark .CodeMirror-gutters {
  16. background: #0a0e14;
  17. border-right: 0px;
  18. }
  19. .cm-s-ayu-dark .CodeMirror-guttermarker {
  20. color: white;
  21. }
  22. .cm-s-ayu-dark .CodeMirror-guttermarker-subtle {
  23. color: #3d424d;
  24. }
  25. .cm-s-ayu-dark .CodeMirror-linenumber {
  26. color: #3d424d;
  27. }
  28. .cm-s-ayu-dark .CodeMirror-cursor {
  29. border-left: 1px solid #e6b450;
  30. }
  31. .cm-s-ayu-dark span.cm-comment {
  32. color: #626a73;
  33. }
  34. .cm-s-ayu-dark span.cm-atom {
  35. color: #ae81ff;
  36. }
  37. .cm-s-ayu-dark span.cm-number {
  38. color: #e6b450;
  39. }
  40. .cm-s-ayu-dark span.cm-comment.cm-attribute {
  41. color: #ffb454;
  42. }
  43. .cm-s-ayu-dark span.cm-comment.cm-def {
  44. color: rgba(57, 186, 230, 80);
  45. }
  46. .cm-s-ayu-dark span.cm-comment.cm-tag {
  47. color: #39bae6;
  48. }
  49. .cm-s-ayu-dark span.cm-comment.cm-type {
  50. color: #5998a6;
  51. }
  52. .cm-s-ayu-dark span.cm-property, .cm-s-ayu-dark span.cm-attribute {
  53. color: #ffb454;
  54. }
  55. .cm-s-ayu-dark span.cm-keyword {
  56. color: #ff8f40;
  57. }
  58. .cm-s-ayu-dark span.cm-builtin {
  59. color: #e6b450;
  60. }
  61. .cm-s-ayu-dark span.cm-string {
  62. color: #c2d94c;
  63. }
  64. .cm-s-ayu-dark span.cm-variable {
  65. color: #b3b1ad;
  66. }
  67. .cm-s-ayu-dark span.cm-variable-2 {
  68. color: #f07178;
  69. }
  70. .cm-s-ayu-dark span.cm-variable-3 {
  71. color: #39bae6;
  72. }
  73. .cm-s-ayu-dark span.cm-type {
  74. color: #ff8f40;
  75. }
  76. .cm-s-ayu-dark span.cm-def {
  77. color: #ffee99;
  78. }
  79. .cm-s-ayu-dark span.cm-bracket {
  80. color: #f8f8f2;
  81. }
  82. .cm-s-ayu-dark span.cm-tag {
  83. color: rgba(57, 186, 230, 80);
  84. }
  85. .cm-s-ayu-dark span.cm-header {
  86. color: #c2d94c;
  87. }
  88. .cm-s-ayu-dark span.cm-link {
  89. color: #39bae6;
  90. }
  91. .cm-s-ayu-dark span.cm-error {
  92. color: #ff3333;
  93. }
  94. .cm-s-ayu-dark .CodeMirror-activeline-background {
  95. background: #01060e;
  96. }
  97. .cm-s-ayu-dark .CodeMirror-matchingbracket {
  98. text-decoration: underline;
  99. color: white !important;
  100. }