dark.scss 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  1. /*
  2. * Style: monokai
  3. * https://xyproto.github.io/splash/docs/monokai.html
  4. */
  5. /* Background */
  6. .chroma {
  7. color: #f8f8f2;
  8. background-color: #272822
  9. }
  10. /* Other */
  11. .chroma .x {}
  12. /* Error */
  13. .chroma .err {
  14. color: #bb0064;
  15. }
  16. /* LineTableTD */
  17. .chroma .lntd {
  18. vertical-align: top;
  19. padding: 0;
  20. margin: 0;
  21. border: 0;
  22. }
  23. /* LineTable */
  24. .chroma .lntable {
  25. border-spacing: 0;
  26. padding: 0;
  27. margin: 0;
  28. border: 0;
  29. width: auto;
  30. overflow: auto;
  31. display: block;
  32. }
  33. /* LineHighlight */
  34. .chroma .hl {
  35. display: block;
  36. width: 100%;
  37. background-color: #ffffcc
  38. }
  39. /* LineNumbersTable */
  40. .chroma .lnt {
  41. margin-right: 0.4em;
  42. padding: 0 0.4em 0 0.4em;
  43. color: #7f7f7f
  44. }
  45. /* LineNumbers */
  46. .chroma .ln {
  47. margin-right: 0.4em;
  48. padding: 0 0.4em 0 0.4em;
  49. color: #7f7f7f
  50. }
  51. /* Keyword */
  52. .chroma .k {
  53. color: #66d9ef
  54. }
  55. /* KeywordConstant */
  56. .chroma .kc {
  57. color: #66d9ef
  58. }
  59. /* KeywordDeclaration */
  60. .chroma .kd {
  61. color: #66d9ef
  62. }
  63. /* KeywordNamespace */
  64. .chroma .kn {
  65. color: #f92672
  66. }
  67. /* KeywordPseudo */
  68. .chroma .kp {
  69. color: #66d9ef
  70. }
  71. /* KeywordReserved */
  72. .chroma .kr {
  73. color: #66d9ef
  74. }
  75. /* KeywordType */
  76. .chroma .kt {
  77. color: #66d9ef
  78. }
  79. /* Name */
  80. .chroma .n {}
  81. /* NameAttribute */
  82. .chroma .na {
  83. color: #a6e22e
  84. }
  85. /* NameBuiltin */
  86. .chroma .nb {}
  87. /* NameBuiltinPseudo */
  88. .chroma .bp {}
  89. /* NameClass */
  90. .chroma .nc {
  91. color: #a6e22e
  92. }
  93. /* NameConstant */
  94. .chroma .no {
  95. color: #66d9ef
  96. }
  97. /* NameDecorator */
  98. .chroma .nd {
  99. color: #a6e22e
  100. }
  101. /* NameEntity */
  102. .chroma .ni {}
  103. /* NameException */
  104. .chroma .ne {
  105. color: #a6e22e
  106. }
  107. /* NameFunction */
  108. .chroma .nf {
  109. color: #a6e22e
  110. }
  111. /* NameFunctionMagic */
  112. .chroma .fm {}
  113. /* NameLabel */
  114. .chroma .nl {}
  115. /* NameNamespace */
  116. .chroma .nn {}
  117. /* NameOther */
  118. .chroma .nx {
  119. color: #a6e22e
  120. }
  121. /* NameProperty */
  122. .chroma .py {}
  123. /* NameTag */
  124. .chroma .nt {
  125. color: #f92672
  126. }
  127. /* NameVariable */
  128. .chroma .nv {}
  129. /* NameVariableClass */
  130. .chroma .vc {}
  131. /* NameVariableGlobal */
  132. .chroma .vg {}
  133. /* NameVariableInstance */
  134. .chroma .vi {}
  135. /* NameVariableMagic */
  136. .chroma .vm {}
  137. /* Literal */
  138. .chroma .l {
  139. color: #ae81ff
  140. }
  141. /* LiteralDate */
  142. .chroma .ld {
  143. color: #e6db74
  144. }
  145. /* LiteralString */
  146. .chroma .s {
  147. color: #e6db74
  148. }
  149. /* LiteralStringAffix */
  150. .chroma .sa {
  151. color: #e6db74
  152. }
  153. /* LiteralStringBacktick */
  154. .chroma .sb {
  155. color: #e6db74
  156. }
  157. /* LiteralStringChar */
  158. .chroma .sc {
  159. color: #e6db74
  160. }
  161. /* LiteralStringDelimiter */
  162. .chroma .dl {
  163. color: #e6db74
  164. }
  165. /* LiteralStringDoc */
  166. .chroma .sd {
  167. color: #e6db74
  168. }
  169. /* LiteralStringDouble */
  170. .chroma .s2 {
  171. color: #e6db74
  172. }
  173. /* LiteralStringEscape */
  174. .chroma .se {
  175. color: #ae81ff
  176. }
  177. /* LiteralStringHeredoc */
  178. .chroma .sh {
  179. color: #e6db74
  180. }
  181. /* LiteralStringInterpol */
  182. .chroma .si {
  183. color: #e6db74
  184. }
  185. /* LiteralStringOther */
  186. .chroma .sx {
  187. color: #e6db74
  188. }
  189. /* LiteralStringRegex */
  190. .chroma .sr {
  191. color: #e6db74
  192. }
  193. /* LiteralStringSingle */
  194. .chroma .s1 {
  195. color: #e6db74
  196. }
  197. /* LiteralStringSymbol */
  198. .chroma .ss {
  199. color: #e6db74
  200. }
  201. /* LiteralNumber */
  202. .chroma .m {
  203. color: #ae81ff
  204. }
  205. /* LiteralNumberBin */
  206. .chroma .mb {
  207. color: #ae81ff
  208. }
  209. /* LiteralNumberFloat */
  210. .chroma .mf {
  211. color: #ae81ff
  212. }
  213. /* LiteralNumberHex */
  214. .chroma .mh {
  215. color: #ae81ff
  216. }
  217. /* LiteralNumberInteger */
  218. .chroma .mi {
  219. color: #ae81ff
  220. }
  221. /* LiteralNumberIntegerLong */
  222. .chroma .il {
  223. color: #ae81ff
  224. }
  225. /* LiteralNumberOct */
  226. .chroma .mo {
  227. color: #ae81ff
  228. }
  229. /* Operator */
  230. .chroma .o {
  231. color: #f92672
  232. }
  233. /* OperatorWord */
  234. .chroma .ow {
  235. color: #f92672
  236. }
  237. /* Punctuation */
  238. .chroma .p {}
  239. /* Comment */
  240. .chroma .c {
  241. color: #75715e
  242. }
  243. /* CommentHashbang */
  244. .chroma .ch {
  245. color: #75715e
  246. }
  247. /* CommentMultiline */
  248. .chroma .cm {
  249. color: #75715e
  250. }
  251. /* CommentSingle */
  252. .chroma .c1 {
  253. color: #75715e
  254. }
  255. /* CommentSpecial */
  256. .chroma .cs {
  257. color: #75715e
  258. }
  259. /* CommentPreproc */
  260. .chroma .cp {
  261. color: #75715e
  262. }
  263. /* CommentPreprocFile */
  264. .chroma .cpf {
  265. color: #75715e
  266. }
  267. /* Generic */
  268. .chroma .g {}
  269. /* GenericDeleted */
  270. .chroma .gd {
  271. color: #f92672
  272. }
  273. /* GenericEmph */
  274. .chroma .ge {
  275. font-style: italic
  276. }
  277. /* GenericError */
  278. .chroma .gr {}
  279. /* GenericHeading */
  280. .chroma .gh {}
  281. /* GenericInserted */
  282. .chroma .gi {
  283. color: #a6e22e
  284. }
  285. /* GenericOutput */
  286. .chroma .go {}
  287. /* GenericPrompt */
  288. .chroma .gp {}
  289. /* GenericStrong */
  290. .chroma .gs {
  291. font-weight: bold
  292. }
  293. /* GenericSubheading */
  294. .chroma .gu {
  295. color: #75715e
  296. }
  297. /* GenericTraceback */
  298. .chroma .gt {}
  299. /* GenericUnderline */
  300. .chroma .gl {}
  301. /* TextWhitespace */
  302. .chroma .w {}