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