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.

midnight.css 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /* Based on the theme at http://bonsaiden.github.com/JavaScript-Garden */
  2. /*<!--activeline-->*/
  3. .cm-s-midnight .CodeMirror-activeline-background {
  4. background: #253540;
  5. }
  6. .cm-s-midnight.CodeMirror {
  7. background: #0F192A;
  8. color: #D1EDFF;
  9. }
  10. .cm-s-midnight div.CodeMirror-selected {
  11. background: #314D67;
  12. }
  13. .cm-s-midnight .CodeMirror-line::selection, .cm-s-midnight .CodeMirror-line > span::selection, .cm-s-midnight .CodeMirror-line > span > span::selection {
  14. background: rgba(49, 77, 103, .99);
  15. }
  16. .cm-s-midnight .CodeMirror-line::-moz-selection, .cm-s-midnight .CodeMirror-line > span::-moz-selection, .cm-s-midnight .CodeMirror-line > span > span::-moz-selection {
  17. background: rgba(49, 77, 103, .99);
  18. }
  19. .cm-s-midnight .CodeMirror-gutters {
  20. background: #0F192A;
  21. border-right: 1px solid;
  22. }
  23. .cm-s-midnight .CodeMirror-guttermarker {
  24. color: white;
  25. }
  26. .cm-s-midnight .CodeMirror-guttermarker-subtle {
  27. color: #d0d0d0;
  28. }
  29. .cm-s-midnight .CodeMirror-linenumber {
  30. color: #D0D0D0;
  31. }
  32. .cm-s-midnight .CodeMirror-cursor {
  33. border-left: 1px solid #F8F8F0;
  34. }
  35. .cm-s-midnight span.cm-comment {
  36. color: #428BDD;
  37. }
  38. .cm-s-midnight span.cm-atom {
  39. color: #AE81FF;
  40. }
  41. .cm-s-midnight span.cm-number {
  42. color: #D1EDFF;
  43. }
  44. .cm-s-midnight span.cm-property, .cm-s-midnight span.cm-attribute {
  45. color: #A6E22E;
  46. }
  47. .cm-s-midnight span.cm-keyword {
  48. color: #E83737;
  49. }
  50. .cm-s-midnight span.cm-string {
  51. color: #1DC116;
  52. }
  53. .cm-s-midnight span.cm-variable {
  54. color: #FFAA3E;
  55. }
  56. .cm-s-midnight span.cm-variable-2 {
  57. color: #FFAA3E;
  58. }
  59. .cm-s-midnight span.cm-def {
  60. color: #4DD;
  61. }
  62. .cm-s-midnight span.cm-bracket {
  63. color: #D1EDFF;
  64. }
  65. .cm-s-midnight span.cm-tag {
  66. color: #449;
  67. }
  68. .cm-s-midnight span.cm-link {
  69. color: #AE81FF;
  70. }
  71. .cm-s-midnight span.cm-error {
  72. background: #F92672;
  73. color: #F8F8F0;
  74. }
  75. .cm-s-midnight .CodeMirror-matchingbracket {
  76. text-decoration: underline;
  77. color: white !important;
  78. }