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.

the-matrix.css 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. .cm-s-the-matrix.CodeMirror {
  2. background: #000000;
  3. color: #00FF00;
  4. }
  5. .cm-s-the-matrix div.CodeMirror-selected {
  6. background: #2D2D2D;
  7. }
  8. .cm-s-the-matrix .CodeMirror-line::selection, .cm-s-the-matrix .CodeMirror-line > span::selection, .cm-s-the-matrix .CodeMirror-line > span > span::selection {
  9. background: rgba(45, 45, 45, 0.99);
  10. }
  11. .cm-s-the-matrix .CodeMirror-line::-moz-selection, .cm-s-the-matrix .CodeMirror-line > span::-moz-selection, .cm-s-the-matrix .CodeMirror-line > span > span::-moz-selection {
  12. background: rgba(45, 45, 45, 0.99);
  13. }
  14. .cm-s-the-matrix .CodeMirror-gutters {
  15. background: #060;
  16. border-right: 2px solid #00FF00;
  17. }
  18. .cm-s-the-matrix .CodeMirror-guttermarker {
  19. color: #0f0;
  20. }
  21. .cm-s-the-matrix .CodeMirror-guttermarker-subtle {
  22. color: white;
  23. }
  24. .cm-s-the-matrix .CodeMirror-linenumber {
  25. color: #FFFFFF;
  26. }
  27. .cm-s-the-matrix .CodeMirror-cursor {
  28. border-left: 1px solid #00FF00;
  29. }
  30. .cm-s-the-matrix span.cm-keyword {
  31. color: #008803;
  32. font-weight: bold;
  33. }
  34. .cm-s-the-matrix span.cm-atom {
  35. color: #3FF;
  36. }
  37. .cm-s-the-matrix span.cm-number {
  38. color: #FFB94F;
  39. }
  40. .cm-s-the-matrix span.cm-def {
  41. color: #99C;
  42. }
  43. .cm-s-the-matrix span.cm-variable {
  44. color: #F6C;
  45. }
  46. .cm-s-the-matrix span.cm-variable-2 {
  47. color: #C6F;
  48. }
  49. .cm-s-the-matrix span.cm-variable-3, .cm-s-the-matrix span.cm-type {
  50. color: #96F;
  51. }
  52. .cm-s-the-matrix span.cm-property {
  53. color: #62FFA0;
  54. }
  55. .cm-s-the-matrix span.cm-operator {
  56. color: #999;
  57. }
  58. .cm-s-the-matrix span.cm-comment {
  59. color: #CCCCCC;
  60. }
  61. .cm-s-the-matrix span.cm-string {
  62. color: #39C;
  63. }
  64. .cm-s-the-matrix span.cm-meta {
  65. color: #C9F;
  66. }
  67. .cm-s-the-matrix span.cm-qualifier {
  68. color: #FFF700;
  69. }
  70. .cm-s-the-matrix span.cm-builtin {
  71. color: #30a;
  72. }
  73. .cm-s-the-matrix span.cm-bracket {
  74. color: #cc7;
  75. }
  76. .cm-s-the-matrix span.cm-tag {
  77. color: #FFBD40;
  78. }
  79. .cm-s-the-matrix span.cm-attribute {
  80. color: #FFF700;
  81. }
  82. .cm-s-the-matrix span.cm-error {
  83. color: #FF0000;
  84. }
  85. .cm-s-the-matrix .CodeMirror-activeline-background {
  86. background: #040;
  87. }