OLD | NEW |
(Empty) | |
| 1 /* |
| 2 |
| 3 Pojoaque Style by Jason Tate |
| 4 http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highl
ighter.html |
| 5 Based on Solarized Style from http://ethanschoonover.com/solarized |
| 6 |
| 7 */ |
| 8 |
| 9 .hljs { |
| 10 display: block; |
| 11 overflow-x: auto; |
| 12 padding: 0.5em; |
| 13 color: #dccf8f; |
| 14 background: url(./pojoaque.jpg) repeat scroll left top #181914; |
| 15 -webkit-text-size-adjust: none; |
| 16 } |
| 17 |
| 18 .hljs-comment, |
| 19 .hljs-template_comment, |
| 20 .diff .hljs-header, |
| 21 .hljs-doctype, |
| 22 .lisp .hljs-string, |
| 23 .hljs-javadoc { |
| 24 color: #586e75; |
| 25 font-style: italic; |
| 26 } |
| 27 |
| 28 .hljs-keyword, |
| 29 .css .rule .hljs-keyword, |
| 30 .hljs-winutils, |
| 31 .javascript .hljs-title, |
| 32 .method, |
| 33 .hljs-addition, |
| 34 .css .hljs-tag, |
| 35 .hljs-list .hljs-keyword, |
| 36 .nginx .hljs-title { |
| 37 color: #b64926; |
| 38 } |
| 39 |
| 40 .hljs-number, |
| 41 .hljs-command, |
| 42 .hljs-string, |
| 43 .hljs-tag .hljs-value, |
| 44 .hljs-phpdoc, |
| 45 .hljs-dartdoc, |
| 46 .tex .hljs-formula, |
| 47 .hljs-regexp, |
| 48 .hljs-hexcolor { |
| 49 color: #468966; |
| 50 } |
| 51 |
| 52 .hljs-title, |
| 53 .hljs-localvars, |
| 54 .hljs-function .hljs-title, |
| 55 .hljs-chunk, |
| 56 .hljs-decorator, |
| 57 .hljs-built_in, |
| 58 .hljs-identifier, |
| 59 .hljs-id { |
| 60 color: #ffb03b; |
| 61 } |
| 62 |
| 63 .hljs-attribute, |
| 64 .hljs-variable, |
| 65 .lisp .hljs-body, |
| 66 .smalltalk .hljs-number, |
| 67 .hljs-constant, |
| 68 .hljs-class .hljs-title, |
| 69 .hljs-parent, |
| 70 .hljs-type { |
| 71 color: #b58900; |
| 72 } |
| 73 |
| 74 .css .hljs-attribute { |
| 75 color: #b89859; |
| 76 } |
| 77 |
| 78 .css .hljs-number, |
| 79 .css .hljs-hexcolor { |
| 80 color: #dccf8f; |
| 81 } |
| 82 |
| 83 .css .hljs-class { |
| 84 color: #d3a60c; |
| 85 } |
| 86 |
| 87 .hljs-preprocessor, |
| 88 .hljs-pragma, |
| 89 .hljs-pi, |
| 90 .hljs-shebang, |
| 91 .hljs-symbol, |
| 92 .hljs-symbol .hljs-string, |
| 93 .diff .hljs-change, |
| 94 .hljs-special, |
| 95 .hljs-attr_selector, |
| 96 .hljs-important, |
| 97 .hljs-subst, |
| 98 .hljs-cdata { |
| 99 color: #cb4b16; |
| 100 } |
| 101 |
| 102 .hljs-deletion { |
| 103 color: #dc322f; |
| 104 } |
| 105 |
| 106 .tex .hljs-formula { |
| 107 background: #073642; |
| 108 } |
OLD | NEW |