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

  1. /*
  2. Pojoaque Style by Jason Tate
  3. http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html
  4. Based on Solarized Style from http://ethanschoonover.com/solarized
  5. */
  6. .hljs {
  7. display: block;
  8. overflow-x: auto;
  9. padding: 0.5em;
  10. color: #dccf8f;
  11. background: url(./pojoaque.jpg) repeat scroll left top #181914;
  12. -webkit-text-size-adjust: none;
  13. }
  14. .hljs-comment,
  15. .diff .hljs-header,
  16. .hljs-doctype,
  17. .lisp .hljs-string,
  18. .hljs-javadoc {
  19. color: #586e75;
  20. font-style: italic;
  21. }
  22. .hljs-keyword,
  23. .css .rule .hljs-keyword,
  24. .hljs-winutils,
  25. .javascript .hljs-title,
  26. .method,
  27. .hljs-addition,
  28. .css .hljs-tag,
  29. .hljs-list .hljs-keyword,
  30. .nginx .hljs-title {
  31. color: #b64926;
  32. }
  33. .hljs-number,
  34. .hljs-command,
  35. .hljs-string,
  36. .hljs-tag .hljs-value,
  37. .hljs-phpdoc,
  38. .hljs-dartdoc,
  39. .tex .hljs-formula,
  40. .hljs-regexp,
  41. .hljs-hexcolor {
  42. color: #468966;
  43. }
  44. .hljs-title,
  45. .hljs-localvars,
  46. .hljs-function .hljs-title,
  47. .hljs-chunk,
  48. .hljs-decorator,
  49. .hljs-built_in,
  50. .hljs-identifier,
  51. .hljs-id {
  52. color: #ffb03b;
  53. }
  54. .hljs-attribute,
  55. .hljs-variable,
  56. .lisp .hljs-body,
  57. .smalltalk .hljs-number,
  58. .hljs-constant,
  59. .hljs-class .hljs-title,
  60. .hljs-parent,
  61. .hljs-type {
  62. color: #b58900;
  63. }
  64. .css .hljs-attribute {
  65. color: #b89859;
  66. }
  67. .css .hljs-number,
  68. .css .hljs-hexcolor {
  69. color: #dccf8f;
  70. }
  71. .css .hljs-class {
  72. color: #d3a60c;
  73. }
  74. .hljs-preprocessor,
  75. .hljs-pragma,
  76. .hljs-pi,
  77. .hljs-shebang,
  78. .hljs-symbol,
  79. .hljs-symbol .hljs-string,
  80. .diff .hljs-change,
  81. .hljs-special,
  82. .hljs-attr_selector,
  83. .hljs-important,
  84. .hljs-subst,
  85. .hljs-cdata {
  86. color: #cb4b16;
  87. }
  88. .hljs-deletion {
  89. color: #dc322f;
  90. }
  91. .tex .hljs-formula {
  92. background: #073642;
  93. }