tomorrow-night.css 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. Name: Tomorrow Night
  3. Author: 小鲤鱼听听
  4. */
  5. .cm-s-tomorrow-night.CodeMirror {
  6. background: #1d1f21;
  7. color: #c5c8c6;
  8. }
  9. .cm-s-tomorrow-night div.CodeMirror-selected {
  10. background: #2d2d2d;
  11. }
  12. .cm-s-tomorrow-night .CodeMirror-line::selection,
  13. .cm-s-tomorrow-night .CodeMirror-line > span::selection,
  14. .cm-s-tomorrow-night .CodeMirror-line > span > span::selection {
  15. background: rgba(45, 45, 45, 0.99);
  16. }
  17. .cm-s-tomorrow-night .CodeMirror-line::-moz-selection,
  18. .cm-s-tomorrow-night .CodeMirror-line > span::-moz-selection,
  19. .cm-s-tomorrow-night .CodeMirror-line > span > span::-moz-selection {
  20. background: rgba(45, 45, 45, 0.99);
  21. }
  22. .cm-s-tomorrow-night .CodeMirror-gutters {
  23. background: #1d1f21;
  24. border-right: 0px;
  25. }
  26. .cm-s-tomorrow-night .CodeMirror-guttermarker {
  27. color: #cc6666;
  28. }
  29. .cm-s-tomorrow-night .CodeMirror-guttermarker-subtle {
  30. color: #777;
  31. }
  32. .cm-s-tomorrow-night .CodeMirror-linenumber {
  33. color: #515151;
  34. }
  35. .cm-s-tomorrow-night .CodeMirror-cursor {
  36. border-left: 1px solid #6a6a6a;
  37. }
  38. .cm-s-tomorrow-night span.cm-comment {
  39. color: #969896;
  40. }
  41. .cm-s-tomorrow-night span.cm-atom {
  42. color: #a16a94;
  43. }
  44. .cm-s-tomorrow-night span.cm-number {
  45. color: #de935f;
  46. }
  47. .cm-s-tomorrow-night span.cm-property {
  48. color: #81a2be;
  49. }
  50. .cm-s-tomorrow-night span.cm-attribute {
  51. color: #99cc99;
  52. }
  53. .cm-s-tomorrow-night span.cm-keyword {
  54. color: #b294bb;
  55. }
  56. .cm-s-tomorrow-night span.cm-string {
  57. color: #ffcc66;
  58. }
  59. .cm-s-tomorrow-night span.cm-variable {
  60. color: #99cc99;
  61. }
  62. .cm-s-tomorrow-night span.cm-variable-2 {
  63. color: #3c8ddf;
  64. }
  65. .cm-s-tomorrow-night span.cm-def {
  66. color: #f99157;
  67. }
  68. .cm-s-tomorrow-night span.cm-bracket {
  69. color: #cccccc;
  70. }
  71. .cm-s-tomorrow-night span.cm-tag {
  72. color: #cc6666;
  73. }
  74. .cm-s-tomorrow-night span.cm-link {
  75. color: #a16a94;
  76. }
  77. .cm-s-tomorrow-night span.cm-error {
  78. background: #cc6666;
  79. color: #6a6a6a;
  80. }
  81. .cm-s-tomorrow-night .CodeMirror-activeline-background {
  82. background: #343600;
  83. }
  84. .cm-s-tomorrow-night .CodeMirror-matchingbracket {
  85. text-decoration: underline;
  86. color: white !important;
  87. }