Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

twilight.css 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. .cm-s-twilight.CodeMirror {
  2. background: #141414;
  3. color: #f7f7f7;
  4. }
  5. /**/
  6. .cm-s-twilight div.CodeMirror-selected {
  7. background: #323232;
  8. }
  9. /**/
  10. .cm-s-twilight .CodeMirror-line::selection, .cm-s-twilight .CodeMirror-line > span::selection, .cm-s-twilight .CodeMirror-line > span > span::selection {
  11. background: rgba(50, 50, 50, 0.99);
  12. }
  13. .cm-s-twilight .CodeMirror-line::-moz-selection, .cm-s-twilight .CodeMirror-line > span::-moz-selection, .cm-s-twilight .CodeMirror-line > span > span::-moz-selection {
  14. background: rgba(50, 50, 50, 0.99);
  15. }
  16. .cm-s-twilight .CodeMirror-gutters {
  17. background: #222;
  18. border-right: 1px solid #aaa;
  19. }
  20. .cm-s-twilight .CodeMirror-guttermarker {
  21. color: white;
  22. }
  23. .cm-s-twilight .CodeMirror-guttermarker-subtle {
  24. color: #aaa;
  25. }
  26. .cm-s-twilight .CodeMirror-linenumber {
  27. color: #aaa;
  28. }
  29. .cm-s-twilight .CodeMirror-cursor {
  30. border-left: 1px solid white;
  31. }
  32. .cm-s-twilight .cm-keyword {
  33. color: #f9ee98;
  34. }
  35. /**/
  36. .cm-s-twilight .cm-atom {
  37. color: #FC0;
  38. }
  39. .cm-s-twilight .cm-number {
  40. color: #ca7841;
  41. }
  42. /**/
  43. .cm-s-twilight .cm-def {
  44. color: #8DA6CE;
  45. }
  46. .cm-s-twilight span.cm-variable-2, .cm-s-twilight span.cm-tag {
  47. color: #607392;
  48. }
  49. /**/
  50. .cm-s-twilight span.cm-variable-3, .cm-s-twilight span.cm-def, .cm-s-twilight span.cm-type {
  51. color: #607392;
  52. }
  53. /**/
  54. .cm-s-twilight .cm-operator {
  55. color: #cda869;
  56. }
  57. /**/
  58. .cm-s-twilight .cm-comment {
  59. color: #777;
  60. font-style: italic;
  61. font-weight: normal;
  62. }
  63. /**/
  64. .cm-s-twilight .cm-string {
  65. color: #8f9d6a;
  66. font-style: italic;
  67. }
  68. /**/
  69. .cm-s-twilight .cm-string-2 {
  70. color: #bd6b18;
  71. }
  72. /*?*/
  73. .cm-s-twilight .cm-meta {
  74. background-color: #141414;
  75. color: #f7f7f7;
  76. }
  77. /*?*/
  78. .cm-s-twilight .cm-builtin {
  79. color: #cda869;
  80. }
  81. /*?*/
  82. .cm-s-twilight .cm-tag {
  83. color: #997643;
  84. }
  85. /**/
  86. .cm-s-twilight .cm-attribute {
  87. color: #d6bb6d;
  88. }
  89. /*?*/
  90. .cm-s-twilight .cm-header {
  91. color: #FF6400;
  92. }
  93. .cm-s-twilight .cm-hr {
  94. color: #AEAEAE;
  95. }
  96. .cm-s-twilight .cm-link {
  97. color: #ad9361;
  98. font-style: italic;
  99. text-decoration: none;
  100. }
  101. /**/
  102. .cm-s-twilight .cm-error {
  103. border-bottom: 1px solid red;
  104. }
  105. .cm-s-twilight .CodeMirror-activeline-background {
  106. background: #27282E;
  107. }
  108. .cm-s-twilight .CodeMirror-matchingbracket {
  109. outline: 1px solid grey;
  110. color: white !important;
  111. }