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.

107 lines
1.6 KiB

9 years ago
  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. color: #93a1a1;
  18. }
  19. /* Solarized Green */
  20. .hljs-keyword,
  21. .hljs-winutils,
  22. .method,
  23. .hljs-addition,
  24. .css .hljs-tag,
  25. .hljs-request,
  26. .hljs-status,
  27. .nginx .hljs-title {
  28. color: #859900;
  29. }
  30. /* Solarized Cyan */
  31. .hljs-number,
  32. .hljs-command,
  33. .hljs-string,
  34. .hljs-tag .hljs-value,
  35. .hljs-rule .hljs-value,
  36. .hljs-doctag,
  37. .tex .hljs-formula,
  38. .hljs-regexp,
  39. .hljs-hexcolor,
  40. .hljs-link_url {
  41. color: #2aa198;
  42. }
  43. /* Solarized Blue */
  44. .hljs-title,
  45. .hljs-localvars,
  46. .hljs-chunk,
  47. .hljs-decorator,
  48. .hljs-built_in,
  49. .hljs-identifier,
  50. .vhdl .hljs-literal,
  51. .hljs-id,
  52. .css .hljs-function,
  53. .hljs-name {
  54. color: #268bd2;
  55. }
  56. /* Solarized Yellow */
  57. .hljs-attribute,
  58. .hljs-variable,
  59. .lisp .hljs-body,
  60. .smalltalk .hljs-number,
  61. .hljs-constant,
  62. .hljs-class .hljs-title,
  63. .hljs-parent,
  64. .hljs-type,
  65. .hljs-link_reference {
  66. color: #b58900;
  67. }
  68. /* Solarized Orange */
  69. .hljs-preprocessor,
  70. .hljs-preprocessor .hljs-keyword,
  71. .hljs-pragma,
  72. .hljs-shebang,
  73. .hljs-symbol,
  74. .hljs-symbol .hljs-string,
  75. .diff .hljs-change,
  76. .hljs-special,
  77. .hljs-attr_selector,
  78. .hljs-subst,
  79. .hljs-cdata,
  80. .css .hljs-pseudo,
  81. .hljs-header {
  82. color: #cb4b16;
  83. }
  84. /* Solarized Red */
  85. .hljs-deletion,
  86. .hljs-important {
  87. color: #dc322f;
  88. }
  89. /* Solarized Violet */
  90. .hljs-link_label {
  91. color: #6c71c4;
  92. }
  93. .tex .hljs-formula {
  94. background: #eee8d5;
  95. }