pojoaque.css 1.6 KB

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