pojoaque.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. color: #586e75;
  19. font-style: italic;
  20. }
  21. .hljs-keyword,
  22. .css .rule .hljs-keyword,
  23. .hljs-winutils,
  24. .javascript .hljs-title,
  25. .method,
  26. .hljs-addition,
  27. .css .hljs-tag,
  28. .hljs-list .hljs-keyword,
  29. .nginx .hljs-title {
  30. color: #b64926;
  31. }
  32. .hljs-number,
  33. .hljs-command,
  34. .hljs-string,
  35. .hljs-tag .hljs-value,
  36. .hljs-doctag,
  37. .tex .hljs-formula,
  38. .hljs-regexp,
  39. .hljs-hexcolor {
  40. color: #468966;
  41. }
  42. .hljs-title,
  43. .hljs-localvars,
  44. .hljs-function .hljs-title,
  45. .hljs-chunk,
  46. .hljs-decorator,
  47. .hljs-built_in,
  48. .hljs-identifier,
  49. .hljs-name,
  50. .hljs-id {
  51. color: #ffb03b;
  52. }
  53. .hljs-attribute,
  54. .hljs-variable,
  55. .lisp .hljs-body,
  56. .smalltalk .hljs-number,
  57. .hljs-constant,
  58. .hljs-class .hljs-title,
  59. .hljs-parent,
  60. .hljs-type {
  61. color: #b58900;
  62. }
  63. .css .hljs-attribute {
  64. color: #b89859;
  65. }
  66. .css .hljs-number,
  67. .css .hljs-hexcolor {
  68. color: #dccf8f;
  69. }
  70. .css .hljs-class {
  71. color: #d3a60c;
  72. }
  73. .hljs-preprocessor,
  74. .hljs-pragma,
  75. .hljs-pi,
  76. .hljs-shebang,
  77. .hljs-symbol,
  78. .hljs-symbol .hljs-string,
  79. .diff .hljs-change,
  80. .hljs-special,
  81. .hljs-attr_selector,
  82. .hljs-important,
  83. .hljs-subst,
  84. .hljs-cdata {
  85. color: #cb4b16;
  86. }
  87. .hljs-deletion {
  88. color: #dc322f;
  89. }
  90. .tex .hljs-formula {
  91. background: #073642;
  92. }