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.

108 lines
1.5 KiB

  1. /*
  2. Style with support for rainbow parens
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: 0.5em;
  8. background: #474949;
  9. color: #d1d9e1;
  10. -webkit-text-size-adjust: none;
  11. }
  12. .hljs-body,
  13. .hljs-collection {
  14. color: #d1d9e1;
  15. }
  16. .hljs-comment,
  17. .diff .hljs-header,
  18. .hljs-doctype,
  19. .lisp .hljs-string,
  20. .hljs-javadoc {
  21. color: #969896;
  22. font-style: italic;
  23. }
  24. .hljs-keyword,
  25. .clojure .hljs-attribute,
  26. .hljs-winutils,
  27. .javascript .hljs-title,
  28. .hljs-addition,
  29. .css .hljs-tag {
  30. color: #cc99cc;
  31. }
  32. .hljs-number { color: #f99157; }
  33. .hljs-command,
  34. .hljs-string,
  35. .hljs-tag .hljs-value,
  36. .hljs-phpdoc,
  37. .hljs-dartdoc,
  38. .tex .hljs-formula,
  39. .hljs-regexp,
  40. .hljs-hexcolor {
  41. color: #8abeb7;
  42. }
  43. .hljs-title,
  44. .hljs-localvars,
  45. .hljs-function .hljs-title,
  46. .hljs-chunk,
  47. .hljs-decorator,
  48. .hljs-built_in,
  49. .hljs-identifier {
  50. color: #b5bd68;
  51. }
  52. .hljs-class .hljs-keyword {
  53. color: #f2777a;
  54. }
  55. .hljs-variable,
  56. .smalltalk .hljs-number,
  57. .hljs-constant,
  58. .hljs-class .hljs-title,
  59. .hljs-parent,
  60. .haskell .hljs-label,
  61. .hljs-id {
  62. color: #ffcc66;
  63. }
  64. .hljs-tag .hljs-title,
  65. .hljs-rules .hljs-property,
  66. .django .hljs-tag .hljs-keyword {
  67. font-weight: bold;
  68. }
  69. .hljs-attribute {
  70. color: #81a2be;
  71. }
  72. .hljs-preprocessor,
  73. .hljs-pragma,
  74. .hljs-pi,
  75. .hljs-shebang,
  76. .hljs-symbol,
  77. .hljs-symbol .hljs-string,
  78. .diff .hljs-change,
  79. .hljs-special,
  80. .hljs-attr_selector,
  81. .hljs-important,
  82. .hljs-subst,
  83. .hljs-cdata {
  84. color: #f99157;
  85. }
  86. .hljs-deletion {
  87. color: #dc322f;
  88. }
  89. .tex .hljs-formula {
  90. background: #eee8d5;
  91. }