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.

168 lines
2.8 KiB

  1. /*
  2. Colorbrewer theme
  3. Original: https://github.com/mbostock/colorbrewer-theme (c) Mike Bostock <mike@ocks.org>
  4. Ported by Fabrício Tavares de Oliveira
  5. */
  6. .hljs {
  7. display: block;
  8. overflow-x: auto;
  9. padding: 0.5em;
  10. background: #fff;
  11. -webkit-text-size-adjust: none;
  12. }
  13. .hljs,
  14. .hljs-subst,
  15. .hljs-tag .hljs-title,
  16. .nginx .hljs-title {
  17. color: #000;
  18. }
  19. .hljs-string,
  20. .hljs-title,
  21. .hljs-constant,
  22. .hljs-parent,
  23. .hljs-tag .hljs-value,
  24. .hljs-rules .hljs-value,
  25. .hljs-preprocessor,
  26. .hljs-pragma,
  27. .haml .hljs-symbol,
  28. .ruby .hljs-symbol,
  29. .ruby .hljs-symbol .hljs-string,
  30. .hljs-template_tag,
  31. .django .hljs-variable,
  32. .smalltalk .hljs-class,
  33. .hljs-addition,
  34. .hljs-flow,
  35. .hljs-stream,
  36. .bash .hljs-variable,
  37. .apache .hljs-tag,
  38. .apache .hljs-cbracket,
  39. .tex .hljs-command,
  40. .tex .hljs-special,
  41. .erlang_repl .hljs-function_or_atom,
  42. .asciidoc .hljs-header,
  43. .markdown .hljs-header,
  44. .coffeescript .hljs-attribute {
  45. color: #756bb1;
  46. }
  47. .smartquote,
  48. .hljs-comment,
  49. .hljs-annotation,
  50. .diff .hljs-header,
  51. .hljs-chunk,
  52. .asciidoc .hljs-blockquote,
  53. .markdown .hljs-blockquote {
  54. color: #636363;
  55. }
  56. .hljs-number,
  57. .hljs-date,
  58. .hljs-regexp,
  59. .hljs-literal,
  60. .hljs-hexcolor,
  61. .smalltalk .hljs-symbol,
  62. .smalltalk .hljs-char,
  63. .go .hljs-constant,
  64. .hljs-change,
  65. .lasso .hljs-variable,
  66. .makefile .hljs-variable,
  67. .asciidoc .hljs-bullet,
  68. .markdown .hljs-bullet,
  69. .asciidoc .hljs-link_url,
  70. .markdown .hljs-link_url {
  71. color: #31a354;
  72. }
  73. .hljs-label,
  74. .hljs-javadoc,
  75. .ruby .hljs-string,
  76. .hljs-decorator,
  77. .hljs-filter .hljs-argument,
  78. .hljs-localvars,
  79. .hljs-array,
  80. .hljs-attr_selector,
  81. .hljs-important,
  82. .hljs-pseudo,
  83. .hljs-pi,
  84. .haml .hljs-bullet,
  85. .hljs-doctype,
  86. .hljs-deletion,
  87. .hljs-envvar,
  88. .hljs-shebang,
  89. .apache .hljs-sqbracket,
  90. .nginx .hljs-built_in,
  91. .hljs-list .hljs-built_in,
  92. .tex .hljs-formula,
  93. .erlang_repl .hljs-reserved,
  94. .hljs-prompt,
  95. .asciidoc .hljs-link_label,
  96. .markdown .hljs-link_label,
  97. .vhdl .hljs-attribute,
  98. .clojure .hljs-attribute,
  99. .asciidoc .hljs-attribute,
  100. .lasso .hljs-attribute,
  101. .coffeescript .hljs-property,
  102. .hljs-phony {
  103. color: #88f;
  104. }
  105. .hljs-keyword,
  106. .hljs-id,
  107. .hljs-title,
  108. .hljs-built_in,
  109. .css .hljs-tag,
  110. .hljs-javadoctag,
  111. .hljs-phpdoc,
  112. .hljs-dartdoc,
  113. .hljs-yardoctag,
  114. .smalltalk .hljs-class,
  115. .hljs-winutils,
  116. .bash .hljs-variable,
  117. .apache .hljs-tag,
  118. .hljs-type,
  119. .hljs-typename,
  120. .tex .hljs-command,
  121. .asciidoc .hljs-strong,
  122. .markdown .hljs-strong,
  123. .hljs-request,
  124. .hljs-status {
  125. color: #3182bd;
  126. }
  127. .asciidoc .hljs-emphasis,
  128. .markdown .hljs-emphasis {
  129. font-style: italic;
  130. }
  131. .nginx .hljs-built_in {
  132. font-weight: normal;
  133. }
  134. .coffeescript .javascript,
  135. .javascript .xml,
  136. .lasso .markup,
  137. .tex .hljs-formula,
  138. .xml .javascript,
  139. .xml .vbscript,
  140. .xml .css,
  141. .xml .hljs-cdata {
  142. opacity: 0.5;
  143. }
  144. .css .hljs-attribute,
  145. .html .hljs-attribute {
  146. color: #e6550d;
  147. }
  148. .css .hljs-class,
  149. .html .hljs-tag,
  150. .html .hljs-title {
  151. color: #3182bd;
  152. }