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.

84 lines
1.1KB

  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. }
  13. .hljs-comment,
  14. .hljs-quote {
  15. color: #586e75;
  16. font-style: italic;
  17. }
  18. .hljs-keyword,
  19. .hljs-selector-tag,
  20. .hljs-literal,
  21. .hljs-addition {
  22. color: #b64926;
  23. }
  24. .hljs-number,
  25. .hljs-string,
  26. .hljs-doctag,
  27. .hljs-regexp {
  28. color: #468966;
  29. }
  30. .hljs-title,
  31. .hljs-section,
  32. .hljs-built_in,
  33. .hljs-name {
  34. color: #ffb03b;
  35. }
  36. .hljs-variable,
  37. .hljs-template-variable,
  38. .hljs-class .hljs-title,
  39. .hljs-type,
  40. .hljs-tag {
  41. color: #b58900;
  42. }
  43. .hljs-attribute {
  44. color: #b89859;
  45. }
  46. .hljs-symbol,
  47. .hljs-bullet,
  48. .hljs-link,
  49. .hljs-subst,
  50. .hljs-meta {
  51. color: #cb4b16;
  52. }
  53. .hljs-deletion {
  54. color: #dc322f;
  55. }
  56. .hljs-selector-id,
  57. .hljs-selector-class {
  58. color: #d3a60c;
  59. }
  60. .hljs-formula {
  61. background: #073642;
  62. }
  63. .hljs-emphasis {
  64. font-style: italic;
  65. }
  66. .hljs-strong {
  67. font-weight: bold;
  68. }