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.6 KiB

  1. /*
  2. Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: 0.5em;
  8. background: #fdf6e3;
  9. color: #657b83;
  10. -webkit-text-size-adjust: none;
  11. }
  12. .hljs-comment,
  13. .diff .hljs-header,
  14. .hljs-doctype,
  15. .hljs-pi,
  16. .lisp .hljs-string,
  17. .hljs-javadoc {
  18. color: #93a1a1;
  19. }
  20. /* Solarized Green */
  21. .hljs-keyword,
  22. .hljs-winutils,
  23. .method,
  24. .hljs-addition,
  25. .css .hljs-tag,
  26. .hljs-request,
  27. .hljs-status,
  28. .nginx .hljs-title {
  29. color: #859900;
  30. }
  31. /* Solarized Cyan */
  32. .hljs-number,
  33. .hljs-command,
  34. .hljs-string,
  35. .hljs-tag .hljs-value,
  36. .hljs-rules .hljs-value,
  37. .hljs-phpdoc,
  38. .hljs-dartdoc,
  39. .tex .hljs-formula,
  40. .hljs-regexp,
  41. .hljs-hexcolor,
  42. .hljs-link_url {
  43. color: #2aa198;
  44. }
  45. /* Solarized Blue */
  46. .hljs-title,
  47. .hljs-localvars,
  48. .hljs-chunk,
  49. .hljs-decorator,
  50. .hljs-built_in,
  51. .hljs-identifier,
  52. .vhdl .hljs-literal,
  53. .hljs-id,
  54. .css .hljs-function {
  55. color: #268bd2;
  56. }
  57. /* Solarized Yellow */
  58. .hljs-attribute,
  59. .hljs-variable,
  60. .lisp .hljs-body,
  61. .smalltalk .hljs-number,
  62. .hljs-constant,
  63. .hljs-class .hljs-title,
  64. .hljs-parent,
  65. .hljs-type,
  66. .hljs-link_reference {
  67. color: #b58900;
  68. }
  69. /* Solarized Orange */
  70. .hljs-preprocessor,
  71. .hljs-preprocessor .hljs-keyword,
  72. .hljs-pragma,
  73. .hljs-shebang,
  74. .hljs-symbol,
  75. .hljs-symbol .hljs-string,
  76. .diff .hljs-change,
  77. .hljs-special,
  78. .hljs-attr_selector,
  79. .hljs-subst,
  80. .hljs-cdata,
  81. .css .hljs-pseudo,
  82. .hljs-header {
  83. color: #cb4b16;
  84. }
  85. /* Solarized Red */
  86. .hljs-deletion,
  87. .hljs-important {
  88. color: #dc322f;
  89. }
  90. /* Solarized Violet */
  91. .hljs-link_label {
  92. color: #6c71c4;
  93. }
  94. .tex .hljs-formula {
  95. background: #eee8d5;
  96. }