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.

erlang-dark.css 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. .cm-s-erlang-dark.CodeMirror {
  2. background: #002240;
  3. color: white;
  4. }
  5. .cm-s-erlang-dark div.CodeMirror-selected {
  6. background: #b36539;
  7. }
  8. .cm-s-erlang-dark .CodeMirror-line::selection, .cm-s-erlang-dark .CodeMirror-line > span::selection, .cm-s-erlang-dark .CodeMirror-line > span > span::selection {
  9. background: rgba(179, 101, 57, .99);
  10. }
  11. .cm-s-erlang-dark .CodeMirror-line::-moz-selection, .cm-s-erlang-dark .CodeMirror-line > span::-moz-selection, .cm-s-erlang-dark .CodeMirror-line > span > span::-moz-selection {
  12. background: rgba(179, 101, 57, .99);
  13. }
  14. .cm-s-erlang-dark .CodeMirror-gutters {
  15. background: #002240;
  16. border-right: 1px solid #aaa;
  17. }
  18. .cm-s-erlang-dark .CodeMirror-guttermarker {
  19. color: white;
  20. }
  21. .cm-s-erlang-dark .CodeMirror-guttermarker-subtle {
  22. color: #d0d0d0;
  23. }
  24. .cm-s-erlang-dark .CodeMirror-linenumber {
  25. color: #d0d0d0;
  26. }
  27. .cm-s-erlang-dark .CodeMirror-cursor {
  28. border-left: 1px solid white;
  29. }
  30. .cm-s-erlang-dark span.cm-quote {
  31. color: #ccc;
  32. }
  33. .cm-s-erlang-dark span.cm-atom {
  34. color: #f133f1;
  35. }
  36. .cm-s-erlang-dark span.cm-attribute {
  37. color: #ff80e1;
  38. }
  39. .cm-s-erlang-dark span.cm-bracket {
  40. color: #ff9d00;
  41. }
  42. .cm-s-erlang-dark span.cm-builtin {
  43. color: #eaa;
  44. }
  45. .cm-s-erlang-dark span.cm-comment {
  46. color: #77f;
  47. }
  48. .cm-s-erlang-dark span.cm-def {
  49. color: #e7a;
  50. }
  51. .cm-s-erlang-dark span.cm-keyword {
  52. color: #ffee80;
  53. }
  54. .cm-s-erlang-dark span.cm-meta {
  55. color: #50fefe;
  56. }
  57. .cm-s-erlang-dark span.cm-number {
  58. color: #ffd0d0;
  59. }
  60. .cm-s-erlang-dark span.cm-operator {
  61. color: #d55;
  62. }
  63. .cm-s-erlang-dark span.cm-property {
  64. color: #ccc;
  65. }
  66. .cm-s-erlang-dark span.cm-qualifier {
  67. color: #ccc;
  68. }
  69. .cm-s-erlang-dark span.cm-special {
  70. color: #ffbbbb;
  71. }
  72. .cm-s-erlang-dark span.cm-string {
  73. color: #3ad900;
  74. }
  75. .cm-s-erlang-dark span.cm-string-2 {
  76. color: #ccc;
  77. }
  78. .cm-s-erlang-dark span.cm-tag {
  79. color: #9effff;
  80. }
  81. .cm-s-erlang-dark span.cm-variable {
  82. color: #50fe50;
  83. }
  84. .cm-s-erlang-dark span.cm-variable-2 {
  85. color: #e0e;
  86. }
  87. .cm-s-erlang-dark span.cm-variable-3, .cm-s-erlang-dark span.cm-type {
  88. color: #ccc;
  89. }
  90. .cm-s-erlang-dark span.cm-error {
  91. color: #9d1e15;
  92. }
  93. .cm-s-erlang-dark .CodeMirror-activeline-background {
  94. background: #013461;
  95. }
  96. .cm-s-erlang-dark .CodeMirror-matchingbracket {
  97. outline: 1px solid grey;
  98. color: white !important;
  99. }