pojoaque.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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: .5em;
  10. color: #dccf8f;
  11. background: url(./pojoaque.jpg) repeat scroll left top #181914;
  12. }
  13. .hljs-comment, .hljs-quote {
  14. color: #586e75;
  15. font-style: italic;
  16. }
  17. .hljs-keyword, .hljs-selector-tag, .hljs-literal, .hljs-addition {
  18. color: #b64926;
  19. }
  20. .hljs-number, .hljs-string, .hljs-doctag, .hljs-regexp {
  21. color: #468966;
  22. }
  23. .hljs-title, .hljs-section, .hljs-built_in, .hljs-name {
  24. color: #ffb03b;
  25. }
  26. .hljs-variable, .hljs-template-variable, .hljs-class .hljs-title, .hljs-type, .hljs-tag {
  27. color: #b58900;
  28. }
  29. .hljs-attribute {
  30. color: #b89859;
  31. }
  32. .hljs-symbol, .hljs-bullet, .hljs-link, .hljs-subst, .hljs-meta {
  33. color: #cb4b16;
  34. }
  35. .hljs-deletion {
  36. color: #dc322f;
  37. }
  38. .hljs-selector-id, .hljs-selector-class {
  39. color: #d3a60c;
  40. }
  41. .hljs-formula {
  42. background: #073642;
  43. }
  44. .hljs-emphasis {
  45. font-style: italic;
  46. }
  47. .hljs-strong {
  48. font-weight: bold;
  49. }