OLD | NEW |
(Empty) | |
| 1 /* |
| 2 |
| 3 Style with support for rainbow parens |
| 4 |
| 5 */ |
| 6 |
| 7 .hljs { |
| 8 display: block; |
| 9 overflow-x: auto; |
| 10 padding: 0.5em; |
| 11 background: #474949; |
| 12 color: #d1d9e1; |
| 13 -webkit-text-size-adjust: none; |
| 14 } |
| 15 |
| 16 |
| 17 .hljs-body, |
| 18 .hljs-collection { |
| 19 color: #d1d9e1; |
| 20 } |
| 21 |
| 22 .hljs-comment, |
| 23 .hljs-template_comment, |
| 24 .diff .hljs-header, |
| 25 .hljs-doctype, |
| 26 .lisp .hljs-string, |
| 27 .hljs-javadoc { |
| 28 color: #969896; |
| 29 font-style: italic; |
| 30 } |
| 31 |
| 32 .hljs-keyword, |
| 33 .clojure .hljs-attribute, |
| 34 .hljs-winutils, |
| 35 .javascript .hljs-title, |
| 36 .hljs-addition, |
| 37 .css .hljs-tag { |
| 38 color: #cc99cc; |
| 39 } |
| 40 |
| 41 .hljs-number { color: #f99157; } |
| 42 |
| 43 .hljs-command, |
| 44 .hljs-string, |
| 45 .hljs-tag .hljs-value, |
| 46 .hljs-phpdoc, |
| 47 .hljs-dartdoc, |
| 48 .tex .hljs-formula, |
| 49 .hljs-regexp, |
| 50 .hljs-hexcolor { |
| 51 color: #8abeb7; |
| 52 } |
| 53 |
| 54 .hljs-title, |
| 55 .hljs-localvars, |
| 56 .hljs-function .hljs-title, |
| 57 .hljs-chunk, |
| 58 .hljs-decorator, |
| 59 .hljs-built_in, |
| 60 .hljs-identifier { |
| 61 color: #b5bd68; |
| 62 } |
| 63 |
| 64 .hljs-class .hljs-keyword { |
| 65 color: #f2777a; |
| 66 } |
| 67 |
| 68 .hljs-variable, |
| 69 .smalltalk .hljs-number, |
| 70 .hljs-constant, |
| 71 .hljs-class .hljs-title, |
| 72 .hljs-parent, |
| 73 .haskell .hljs-label, |
| 74 .hljs-id { |
| 75 color: #ffcc66; |
| 76 } |
| 77 |
| 78 .hljs-tag .hljs-title, |
| 79 .hljs-rules .hljs-property, |
| 80 .django .hljs-tag .hljs-keyword { |
| 81 font-weight: bold; |
| 82 } |
| 83 |
| 84 .hljs-attribute { |
| 85 color: #81a2be; |
| 86 } |
| 87 |
| 88 .hljs-preprocessor, |
| 89 .hljs-pragma, |
| 90 .hljs-pi, |
| 91 .hljs-shebang, |
| 92 .hljs-symbol, |
| 93 .hljs-symbol .hljs-string, |
| 94 .diff .hljs-change, |
| 95 .hljs-special, |
| 96 .hljs-attr_selector, |
| 97 .hljs-important, |
| 98 .hljs-subst, |
| 99 .hljs-cdata { |
| 100 color: #f99157; |
| 101 } |
| 102 |
| 103 .hljs-deletion { |
| 104 color: #dc322f; |
| 105 } |
| 106 |
| 107 .tex .hljs-formula { |
| 108 background: #eee8d5; |
| 109 } |
OLD | NEW |