Advertisement
Guest User

jeszcze-lepsze

a guest
Mar 19th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. /* ambiance theme for codemirror */
  2.  
  3. /* Color scheme */
  4.  
  5. .cm-s-ambiance .cm-header { color: blue; }
  6. .cm-s-ambiance .cm-quote { color: #24C2C7; }
  7.  
  8. .cm-s-ambiance .cm-keyword { color: #ff6; }
  9. .cm-s-ambiance .cm-atom { color: #f7a; }
  10. .cm-s-ambiance .cm-number { color: #7F8; }
  11. .cm-s-ambiance .cm-def { color: #aaf; }
  12. .cm-s-ambiance .cm-variable { color: #ffb795; }
  13. .cm-s-ambiance .cm-variable-2 { color: #ddd; }
  14. .cm-s-ambiance .cm-variable-3, .cm-s-ambiance .cm-type { color: #faded3; }
  15. .cm-s-ambiance .cm-property { color: #eed1b3; }
  16. .cm-s-ambiance .cm-operator { color: #f55; }
  17. .cm-s-ambiance .cm-comment { color: #888; font-style:italic; }
  18. .cm-s-ambiance .cm-string { color: #f95; }
  19. .cm-s-ambiance .cm-string-2 { color: #9d937c; }
  20. .cm-s-ambiance .cm-meta { color: #D2A8A1; }
  21. .cm-s-ambiance .cm-qualifier { color: yellow; }
  22. .cm-s-ambiance .cm-builtin { color: #9999cc; }
  23. .cm-s-ambiance .cm-bracket { color: #24C2C7; }
  24. .cm-s-ambiance .cm-tag { color: #fee4ff; }
  25. .cm-s-ambiance .cm-attribute { color: #9B859D; }
  26. .cm-s-ambiance .cm-hr { color: pink; }
  27. .cm-s-ambiance .cm-link { color: #F4C20B; }
  28. .cm-s-ambiance .cm-special { color: #FF9D00; }
  29. .cm-s-ambiance .cm-error { color: #AF2018; }
  30.  
  31. .cm-s-ambiance .CodeMirror-matchingbracket { background-color: #555 }
  32. .cm-s-ambiance .CodeMirror-nonmatchingbracket { color: #f22; }
  33.  
  34. .cm-s-ambiance div.CodeMirror-selected { background: rgba(255, 255, 255, 0.15); }
  35. .cm-s-ambiance.CodeMirror-focused div.CodeMirror-selected { background: rgba(255, 255, 255, 0.10); }
  36. .cm-s-ambiance .CodeMirror-line::selection, .cm-s-ambiance .CodeMirror-line > span::selection, .cm-s-ambiance .CodeMirror-line > span > span::selection { background: rgba(255, 255, 255, 0.10); }
  37. .cm-s-ambiance .CodeMirror-line::-moz-selection, .cm-s-ambiance .CodeMirror-line > span::-moz-selection, .cm-s-ambiance .CodeMirror-line > span > span::-moz-selection { background: rgba(255, 255, 255, 0.10); }
  38.  
  39. /* Editor styling */
  40.  
  41. .cm-s-ambiance.CodeMirror {
  42. line-height: 1.40em;
  43. color: #E6E1DC;
  44. background-color: #10101a;
  45. }
  46.  
  47. .cm-s-ambiance .CodeMirror-gutters {
  48. background: #2a2a3f;
  49. border-right: 0;
  50. }
  51.  
  52. .cm-s-ambiance .CodeMirror-linenumber {
  53. text-shadow: 0px 1px 1px #4d4d4d;
  54. color: #aaa;
  55. padding: 0 5px;
  56. }
  57.  
  58. .cm-s-ambiance .CodeMirror-guttermarker { color: #aaa; }
  59. .cm-s-ambiance .CodeMirror-guttermarker-subtle { color: #111; }
  60.  
  61. .cm-s-ambiance .CodeMirror-cursor { border-left: 1px solid #7991E8; }
  62.  
  63. .cm-s-ambiance .CodeMirror-activeline-background {
  64. background: none repeat scroll 0% 0% rgba(255, 255, 255, 0.031);
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement