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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /* Loosely based on the Midnight Textmate theme */
  2. .cm-s-night.CodeMirror {
  3. background: #0a001f;
  4. color: #f8f8f8;
  5. }
  6. .cm-s-night div.CodeMirror-selected {
  7. background: #447;
  8. }
  9. .cm-s-night .CodeMirror-line::selection, .cm-s-night .CodeMirror-line > span::selection, .cm-s-night .CodeMirror-line > span > span::selection {
  10. background: rgba(68, 68, 119, .99);
  11. }
  12. .cm-s-night .CodeMirror-line::-moz-selection, .cm-s-night .CodeMirror-line > span::-moz-selection, .cm-s-night .CodeMirror-line > span > span::-moz-selection {
  13. background: rgba(68, 68, 119, .99);
  14. }
  15. .cm-s-night .CodeMirror-gutters {
  16. background: #0a001f;
  17. border-right: 1px solid #aaa;
  18. }
  19. .cm-s-night .CodeMirror-guttermarker {
  20. color: white;
  21. }
  22. .cm-s-night .CodeMirror-guttermarker-subtle {
  23. color: #bbb;
  24. }
  25. .cm-s-night .CodeMirror-linenumber {
  26. color: #f8f8f8;
  27. }
  28. .cm-s-night .CodeMirror-cursor {
  29. border-left: 1px solid white;
  30. }
  31. .cm-s-night span.cm-comment {
  32. color: #8900d1;
  33. }
  34. .cm-s-night span.cm-atom {
  35. color: #845dc4;
  36. }
  37. .cm-s-night span.cm-number, .cm-s-night span.cm-attribute {
  38. color: #ffd500;
  39. }
  40. .cm-s-night span.cm-keyword {
  41. color: #599eff;
  42. }
  43. .cm-s-night span.cm-string {
  44. color: #37f14a;
  45. }
  46. .cm-s-night span.cm-meta {
  47. color: #7678e2;
  48. }
  49. .cm-s-night span.cm-variable-2, .cm-s-night span.cm-tag {
  50. color: #99b2ff;
  51. }
  52. .cm-s-night span.cm-variable-3, .cm-s-night span.cm-def, .cm-s-night span.cm-type {
  53. color: white;
  54. }
  55. .cm-s-night span.cm-bracket {
  56. color: #8da6ce;
  57. }
  58. .cm-s-night span.cm-builtin, .cm-s-night span.cm-special {
  59. color: #ff9e59;
  60. }
  61. .cm-s-night span.cm-link {
  62. color: #845dc4;
  63. }
  64. .cm-s-night span.cm-error {
  65. color: #9d1e15;
  66. }
  67. .cm-s-night .CodeMirror-activeline-background {
  68. background: #1C005A;
  69. }
  70. .cm-s-night .CodeMirror-matchingbracket {
  71. outline: 1px solid grey;
  72. color: white !important;
  73. }