index.less 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. .editor, .editor .gutter {
  2. background-color: #000000;
  3. color: #F8F8F8;
  4. }
  5. .editor.is-focused .cursor {
  6. border-color: #A7A7A7;
  7. }
  8. .editor.is-focused .selection .region {
  9. background-color: #AEE219;
  10. }
  11. .editor.is-focused .line-number.cursor-line-no-selection, .editor.is-focused .line.cursor-line {
  12. background-color: rgba(255, 255, 255, 0.1);
  13. }
  14. .comment {
  15. font-style: italic;
  16. color: #AEAEAE;
  17. }
  18. .constant {
  19. color: #3387CC;
  20. }
  21. .entity {
  22. color: #89BDFF;
  23. }
  24. .keyword {
  25. color: #E28964;
  26. }
  27. .storage {
  28. color: #99CF50;
  29. }
  30. .string {
  31. color: #65B042;
  32. }
  33. .support {
  34. color: #9B859D;
  35. }
  36. .variable {
  37. color: #3E87E3;
  38. }
  39. .invalid.deprecated {
  40. font-style: italic;
  41. text-decoration: underline;
  42. color: #FD5FF1;
  43. }
  44. .invalid.illegal {
  45. color: #FD5FF1;
  46. background-color: rgba(86, 45, 86, 0.75);
  47. }
  48. .text .source {
  49. background-color: rgba(177, 179, 186, 0.03);
  50. }
  51. .entity.other.inherited-class {
  52. font-style: italic;
  53. color: #9B5C2E;
  54. }
  55. .string.quoted .source {
  56. color: #DAEFA3;
  57. }
  58. .string .constant {
  59. color: #DDF2A4;
  60. }
  61. .string.regexp {
  62. color: #E9C062;
  63. }
  64. .string.regexp .constant.character.escape, .string.regexp .source.ruby.embedded, .string.regexp .string.regexp.arbitrary-repitition {
  65. color: #CF7D34;
  66. }
  67. .string .variable {
  68. color: #8A9A95;
  69. }
  70. .support.function {
  71. color: #DAD085;
  72. }
  73. .support.constant {
  74. color: #CF6A4C;
  75. }
  76. .meta.preprocessor.c {
  77. color: #8996A8;
  78. }
  79. .meta.preprocessor.c .keyword {
  80. color: #AFC4DB;
  81. }
  82. .entity.name.type {
  83. text-decoration: underline;
  84. }
  85. .meta.cast {
  86. font-style: italic;
  87. color: #676767;
  88. }
  89. .meta.sgml.html .meta.doctype, .meta.sgml.html .meta.doctype .entity, .meta.sgml.html .meta.doctype .string, .meta.xml-processing, .meta.xml-processing .entity, .meta.xml-processing .string {
  90. color: #494949;
  91. }
  92. .meta.tag, .meta.tag .entity {
  93. color: #89BDFF;
  94. }
  95. .source .entity.name.tag, .source .entity.other.attribute-name, .meta.tag.inline, .meta.tag.inline .entity {
  96. color: #E0C589;
  97. }
  98. .entity.name.tag.namespace, .entity.other.attribute-name.namespace {
  99. color: #E18964;
  100. }
  101. .meta.selector.css .entity.name.tag {
  102. color: #CDA869;
  103. }
  104. .meta.selector.css .entity.other.attribute-name.tag.pseudo-class {
  105. color: #8F9D6A;
  106. }
  107. .meta.selector.css .entity.other.attribute-name.id {
  108. color: #8B98AB;
  109. }
  110. .meta.selector.css .entity.other.attribute-name.class {
  111. color: #9B703F;
  112. }
  113. .support.type.property-name.css {
  114. color: #C5AF75;
  115. }
  116. .meta.property-group .support.constant.property-value.css, .meta.property-value .support.constant.property-value.css {
  117. color: #F9EE98;
  118. }
  119. .meta.preprocessor.at-rule .keyword.control.at-rule {
  120. color: #8693A5;
  121. }
  122. .meta.property-value .support.constant.named-color.css, .meta.property-value .constant {
  123. color: #DD7B3B;
  124. }
  125. .meta.constructor.argument.css {
  126. color: #8F9D6A;
  127. }
  128. .meta.diff, .meta.diff.header {
  129. font-style: italic;
  130. color: #F8F8F8;
  131. background-color: #0E2231;
  132. }
  133. .markup.deleted {
  134. color: #F8F8F8;
  135. background-color: #420E09;
  136. }
  137. .markup.changed {
  138. color: #F8F8F8;
  139. background-color: #4A410D;
  140. }
  141. .markup.inserted {
  142. color: #F8F8F8;
  143. background-color: #253B22;
  144. }
  145. .markup.italic {
  146. font-style: italic;
  147. color: #E9C062;
  148. }
  149. .markup.bold {
  150. font-weight: bold;
  151. color: #E9C062;
  152. }
  153. .markup.underline {
  154. text-decoration: underline;
  155. color: #E18964;
  156. }
  157. .markup.quote {
  158. font-style: italic;
  159. color: #E1D4B9;
  160. background-color: rgba(254, 224, 156, 0.07);
  161. }
  162. .markup.heading, .markup.heading .entity {
  163. color: #FEDCC5;
  164. background-color: #632D04;
  165. }
  166. .markup.list {
  167. color: #E1D4B9;
  168. }
  169. .markup.raw {
  170. color: #578BB3;
  171. background-color: rgba(177, 179, 186, 0.03);
  172. }
  173. .markup .comment {
  174. font-style: italic;
  175. color: #F67B37;
  176. }
  177. .meta.separator {
  178. color: #60A633;
  179. background-color: #242424;
  180. }
  181. .meta.line.entry.logfile, .meta.line.exit.logfile {
  182. background-color: rgba(238, 238, 238, 0.16);
  183. }
  184. .meta.line.error.logfile {
  185. background-color: #751012;
  186. }