OLD | NEW |
(Empty) | |
| 1 /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ |
| 2 |
| 3 /* Tomorrow Comment */ |
| 4 .hljs-comment, |
| 5 .hljs-title { |
| 6 color: #8e908c; |
| 7 } |
| 8 |
| 9 /* Tomorrow Red */ |
| 10 .hljs-variable, |
| 11 .hljs-attribute, |
| 12 .hljs-tag, |
| 13 .hljs-regexp, |
| 14 .ruby .hljs-constant, |
| 15 .xml .hljs-tag .hljs-title, |
| 16 .xml .hljs-pi, |
| 17 .xml .hljs-doctype, |
| 18 .html .hljs-doctype, |
| 19 .css .hljs-id, |
| 20 .css .hljs-class, |
| 21 .css .hljs-pseudo { |
| 22 color: #c82829; |
| 23 } |
| 24 |
| 25 /* Tomorrow Orange */ |
| 26 .hljs-number, |
| 27 .hljs-preprocessor, |
| 28 .hljs-pragma, |
| 29 .hljs-built_in, |
| 30 .hljs-literal, |
| 31 .hljs-params, |
| 32 .hljs-constant { |
| 33 color: #f5871f; |
| 34 } |
| 35 |
| 36 /* Tomorrow Yellow */ |
| 37 .ruby .hljs-class .hljs-title, |
| 38 .css .hljs-rules .hljs-attribute { |
| 39 color: #eab700; |
| 40 } |
| 41 |
| 42 /* Tomorrow Green */ |
| 43 .hljs-string, |
| 44 .hljs-value, |
| 45 .hljs-inheritance, |
| 46 .hljs-header, |
| 47 .ruby .hljs-symbol, |
| 48 .xml .hljs-cdata { |
| 49 color: #718c00; |
| 50 } |
| 51 |
| 52 /* Tomorrow Aqua */ |
| 53 .css .hljs-hexcolor { |
| 54 color: #3e999f; |
| 55 } |
| 56 |
| 57 /* Tomorrow Blue */ |
| 58 .hljs-function, |
| 59 .python .hljs-decorator, |
| 60 .python .hljs-title, |
| 61 .ruby .hljs-function .hljs-title, |
| 62 .ruby .hljs-title .hljs-keyword, |
| 63 .perl .hljs-sub, |
| 64 .javascript .hljs-title, |
| 65 .coffeescript .hljs-title { |
| 66 color: #4271ae; |
| 67 } |
| 68 |
| 69 /* Tomorrow Purple */ |
| 70 .hljs-keyword, |
| 71 .javascript .hljs-function { |
| 72 color: #8959a8; |
| 73 } |
| 74 |
| 75 .hljs { |
| 76 display: block; |
| 77 overflow-x: auto; |
| 78 background: white; |
| 79 color: #4d4d4c; |
| 80 padding: 0.5em; |
| 81 -webkit-text-size-adjust: none; |
| 82 } |
| 83 |
| 84 .coffeescript .javascript, |
| 85 .javascript .xml, |
| 86 .tex .hljs-formula, |
| 87 .xml .javascript, |
| 88 .xml .vbscript, |
| 89 .xml .css, |
| 90 .xml .hljs-cdata { |
| 91 opacity: 0.5; |
| 92 } |
OLD | NEW |