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