solarized_light.css 1.6 KB

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