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.

43 lines
947 B

2 months ago
  1. /* neo theme for codemirror */
  2. /* Color scheme */
  3. .cm-s-neo.CodeMirror {
  4. background-color:#ffffff;
  5. color:#2e383c;
  6. line-height:1.4375;
  7. }
  8. .cm-s-neo .cm-comment { color:#75787b; }
  9. .cm-s-neo .cm-keyword, .cm-s-neo .cm-property { color:#1d75b3; }
  10. .cm-s-neo .cm-atom,.cm-s-neo .cm-number { color:#75438a; }
  11. .cm-s-neo .cm-node,.cm-s-neo .cm-tag { color:#9c3328; }
  12. .cm-s-neo .cm-string { color:#b35e14; }
  13. .cm-s-neo .cm-variable,.cm-s-neo .cm-qualifier { color:#047d65; }
  14. /* Editor styling */
  15. .cm-s-neo pre {
  16. padding:0;
  17. }
  18. .cm-s-neo .CodeMirror-gutters {
  19. border:none;
  20. border-right:10px solid transparent;
  21. background-color:transparent;
  22. }
  23. .cm-s-neo .CodeMirror-linenumber {
  24. padding:0;
  25. color:#e0e2e5;
  26. }
  27. .cm-s-neo .CodeMirror-guttermarker { color: #1d75b3; }
  28. .cm-s-neo .CodeMirror-guttermarker-subtle { color: #e0e2e5; }
  29. .cm-s-neo .CodeMirror-cursor {
  30. width: auto;
  31. border: 0;
  32. background: rgba(155,157,162,0.37);
  33. z-index: 1;
  34. }