midnight.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* Based on the theme at http://bonsaiden.github.com/JavaScript-Garden */
  2. /*<!--match-->*/
  3. .cm-s-midnight span.CodeMirror-matchhighlight { background: #494949 }
  4. .cm-s-midnight.CodeMirror-focused span.CodeMirror-matchhighlight { background: #314D67 !important; }
  5. /*<!--activeline-->*/
  6. .cm-s-midnight .CodeMirror-activeline-background {background: #253540 !important;}
  7. .cm-s-midnight.CodeMirror {
  8. background: #0F192A;
  9. color: #D1EDFF;
  10. }
  11. .cm-s-midnight.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}
  12. .cm-s-midnight div.CodeMirror-selected {background: #314D67 !important;}
  13. .cm-s-midnight .CodeMirror-gutters {background: #0F192A; border-right: 1px solid;}
  14. .cm-s-midnight .CodeMirror-linenumber {color: #D0D0D0;}
  15. .cm-s-midnight .CodeMirror-cursor {
  16. border-left: 1px solid #F8F8F0 !important;
  17. }
  18. .cm-s-midnight span.cm-comment {color: #428BDD;}
  19. .cm-s-midnight span.cm-atom {color: #AE81FF;}
  20. .cm-s-midnight span.cm-number {color: #D1EDFF;}
  21. .cm-s-midnight span.cm-property, .cm-s-midnight span.cm-attribute {color: #A6E22E;}
  22. .cm-s-midnight span.cm-keyword {color: #E83737;}
  23. .cm-s-midnight span.cm-string {color: #1DC116;}
  24. .cm-s-midnight span.cm-variable {color: #FFAA3E;}
  25. .cm-s-midnight span.cm-variable-2 {color: #FFAA3E;}
  26. .cm-s-midnight span.cm-def {color: #4DD;}
  27. .cm-s-midnight span.cm-error {background: #F92672; color: #F8F8F0;}
  28. .cm-s-midnight span.cm-bracket {color: #D1EDFF;}
  29. .cm-s-midnight span.cm-tag {color: #449;}
  30. .cm-s-midnight span.cm-link {color: #AE81FF;}
  31. .cm-s-midnight .CodeMirror-matchingbracket {
  32. text-decoration: underline;
  33. color: white !important;
  34. }