pojoaque.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. pre code.hljs {
  2. display: block;
  3. overflow-x: auto;
  4. padding: 1em
  5. }
  6. code.hljs {
  7. padding: 3px 5px
  8. }
  9. /*
  10. Pojoaque Style by Jason Tate
  11. http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html
  12. Based on Solarized Style from http://ethanschoonover.com/solarized
  13. */
  14. .hljs {
  15. color: #dccf8f;
  16. background: url(./pojoaque.jpg) repeat scroll left top #181914
  17. }
  18. .hljs-comment,
  19. .hljs-quote {
  20. color: #586e75;
  21. font-style: italic
  22. }
  23. .hljs-keyword,
  24. .hljs-selector-tag,
  25. .hljs-literal,
  26. .hljs-addition {
  27. color: #b64926
  28. }
  29. .hljs-number,
  30. .hljs-string,
  31. .hljs-doctag,
  32. .hljs-regexp {
  33. color: #468966
  34. }
  35. .hljs-title,
  36. .hljs-section,
  37. .hljs-built_in,
  38. .hljs-name {
  39. color: #ffb03b
  40. }
  41. .hljs-variable,
  42. .hljs-template-variable,
  43. .hljs-title.class_,
  44. .hljs-class .hljs-title,
  45. .hljs-type,
  46. .hljs-tag {
  47. color: #b58900
  48. }
  49. .hljs-attribute {
  50. color: #b89859
  51. }
  52. .hljs-symbol,
  53. .hljs-bullet,
  54. .hljs-link,
  55. .hljs-subst,
  56. .hljs-meta {
  57. color: #cb4b16
  58. }
  59. .hljs-deletion {
  60. color: #dc322f
  61. }
  62. .hljs-selector-id,
  63. .hljs-selector-class {
  64. color: #d3a60c
  65. }
  66. .hljs-formula {
  67. background: #073642
  68. }
  69. .hljs-emphasis {
  70. font-style: italic
  71. }
  72. .hljs-strong {
  73. font-weight: bold
  74. }