Nils Diewald | 2488d05 | 2015-04-09 21:46:02 +0000 | [diff] [blame^] | 1 | /* |
| 2 | * Based on github.com style (c) Vasily Polovnyov <vast@whiteants.net> |
| 3 | */ |
| 4 | .hljs { |
| 5 | display: block; |
| 6 | padding: 0.5em; |
| 7 | } |
| 8 | |
| 9 | .hljs-comment, |
| 10 | .hljs-template_comment, |
| 11 | .diff .hljs-header, |
| 12 | .hljs-javadoc { |
| 13 | color: #998; |
| 14 | font-style: italic |
| 15 | } |
| 16 | |
| 17 | .hljs-keyword, |
| 18 | .css .rule .hljs-keyword, |
| 19 | .hljs-winutils, |
| 20 | .javascript .hljs-title, |
| 21 | .nginx .hljs-title, |
| 22 | .hljs-subst, |
| 23 | .hljs-request, |
| 24 | .hljs-status { |
| 25 | color: #333; |
| 26 | font-weight: bold |
| 27 | } |
| 28 | |
| 29 | .hljs-number, |
| 30 | .hljs-hexcolor, |
| 31 | .ruby .hljs-constant { |
| 32 | color: #099; |
| 33 | } |
| 34 | |
| 35 | .hljs-string, |
| 36 | .hljs-tag .hljs-value, |
| 37 | .hljs-phpdoc, |
| 38 | .tex .hljs-formula { |
| 39 | color: #d14 |
| 40 | } |
| 41 | |
| 42 | .hljs-title, |
| 43 | .hljs-id, |
| 44 | .coffeescript .hljs-params, |
| 45 | .scss .hljs-preprocessor { |
| 46 | color: #900; |
| 47 | font-weight: bold |
| 48 | } |
| 49 | |
| 50 | .javascript .hljs-title, |
| 51 | .lisp .hljs-title, |
| 52 | .clojure .hljs-title, |
| 53 | .hljs-subst { |
| 54 | font-weight: normal |
| 55 | } |
| 56 | |
| 57 | .hljs-class .hljs-title, |
| 58 | .haskell .hljs-type, |
| 59 | .vhdl .hljs-literal, |
| 60 | .tex .hljs-command { |
| 61 | color: #458; |
| 62 | font-weight: bold |
| 63 | } |
| 64 | |
| 65 | .hljs-tag, |
| 66 | .hljs-tag .hljs-title, |
| 67 | .hljs-rules .hljs-property, |
| 68 | .django .hljs-tag .hljs-keyword { |
| 69 | color: #000080; |
| 70 | font-weight: normal |
| 71 | } |
| 72 | |
| 73 | .hljs-attribute, |
| 74 | .hljs-variable, |
| 75 | .lisp .hljs-body { |
| 76 | color: #008080 |
| 77 | } |
| 78 | |
| 79 | .hljs-regexp { |
| 80 | color: #009926 |
| 81 | } |
| 82 | |
| 83 | .hljs-symbol, |
| 84 | .ruby .hljs-symbol .hljs-string, |
| 85 | .lisp .hljs-keyword, |
| 86 | .tex .hljs-special, |
| 87 | .hljs-prompt { |
| 88 | color: #990073 |
| 89 | } |
| 90 | |
| 91 | .hljs-built_in, |
| 92 | .lisp .hljs-title, |
| 93 | .clojure .hljs-built_in { |
| 94 | color: #0086b3 |
| 95 | } |
| 96 | |
| 97 | .hljs-preprocessor, |
| 98 | .hljs-pragma, |
| 99 | .hljs-pi, |
| 100 | .hljs-doctype, |
| 101 | .hljs-shebang, |
| 102 | .hljs-cdata { |
| 103 | color: #999; |
| 104 | font-weight: bold |
| 105 | } |
| 106 | |
| 107 | .hljs-deletion { |
| 108 | background: #fdd |
| 109 | } |
| 110 | |
| 111 | .hljs-addition { |
| 112 | background: #dfd |
| 113 | } |
| 114 | |
| 115 | .diff .hljs-change { |
| 116 | background: #0086b3 |
| 117 | } |
| 118 | |
| 119 | .hljs-chunk { |
| 120 | color: #aaa |
| 121 | } |