OLD | NEW |
(Empty) | |
| 1 /* |
| 2 |
| 3 Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmai
l.com> |
| 4 |
| 5 */ |
| 6 |
| 7 .hljs { |
| 8 display: block; |
| 9 overflow-x: auto; |
| 10 padding: 0.5em; |
| 11 background: #fdf6e3; |
| 12 color: #657b83; |
| 13 -webkit-text-size-adjust: none; |
| 14 } |
| 15 |
| 16 .hljs-comment, |
| 17 .hljs-template_comment, |
| 18 .diff .hljs-header, |
| 19 .hljs-doctype, |
| 20 .hljs-pi, |
| 21 .lisp .hljs-string, |
| 22 .hljs-javadoc { |
| 23 color: #93a1a1; |
| 24 } |
| 25 |
| 26 /* Solarized Green */ |
| 27 .hljs-keyword, |
| 28 .hljs-winutils, |
| 29 .method, |
| 30 .hljs-addition, |
| 31 .css .hljs-tag, |
| 32 .hljs-request, |
| 33 .hljs-status, |
| 34 .nginx .hljs-title { |
| 35 color: #859900; |
| 36 } |
| 37 |
| 38 /* Solarized Cyan */ |
| 39 .hljs-number, |
| 40 .hljs-command, |
| 41 .hljs-string, |
| 42 .hljs-tag .hljs-value, |
| 43 .hljs-rules .hljs-value, |
| 44 .hljs-phpdoc, |
| 45 .hljs-dartdoc, |
| 46 .tex .hljs-formula, |
| 47 .hljs-regexp, |
| 48 .hljs-hexcolor, |
| 49 .hljs-link_url { |
| 50 color: #2aa198; |
| 51 } |
| 52 |
| 53 /* Solarized Blue */ |
| 54 .hljs-title, |
| 55 .hljs-localvars, |
| 56 .hljs-chunk, |
| 57 .hljs-decorator, |
| 58 .hljs-built_in, |
| 59 .hljs-identifier, |
| 60 .vhdl .hljs-literal, |
| 61 .hljs-id, |
| 62 .css .hljs-function { |
| 63 color: #268bd2; |
| 64 } |
| 65 |
| 66 /* Solarized Yellow */ |
| 67 .hljs-attribute, |
| 68 .hljs-variable, |
| 69 .lisp .hljs-body, |
| 70 .smalltalk .hljs-number, |
| 71 .hljs-constant, |
| 72 .hljs-class .hljs-title, |
| 73 .hljs-parent, |
| 74 .hljs-type, |
| 75 .hljs-link_reference { |
| 76 color: #b58900; |
| 77 } |
| 78 |
| 79 /* Solarized Orange */ |
| 80 .hljs-preprocessor, |
| 81 .hljs-preprocessor .hljs-keyword, |
| 82 .hljs-pragma, |
| 83 .hljs-shebang, |
| 84 .hljs-symbol, |
| 85 .hljs-symbol .hljs-string, |
| 86 .diff .hljs-change, |
| 87 .hljs-special, |
| 88 .hljs-attr_selector, |
| 89 .hljs-subst, |
| 90 .hljs-cdata, |
| 91 .css .hljs-pseudo, |
| 92 .hljs-header { |
| 93 color: #cb4b16; |
| 94 } |
| 95 |
| 96 /* Solarized Red */ |
| 97 .hljs-deletion, |
| 98 .hljs-important { |
| 99 color: #dc322f; |
| 100 } |
| 101 |
| 102 /* Solarized Violet */ |
| 103 .hljs-link_label { |
| 104 color: #6c71c4; |
| 105 } |
| 106 |
| 107 .tex .hljs-formula { |
| 108 background: #eee8d5; |
| 109 } |
OLD | NEW |