OLD | NEW |
(Empty) | |
| 1 /* |
| 2 Name: Kimbie (dark) |
| 3 Author: Jan T. Sott |
| 4 License: Creative Commons Attribution-ShareAlike 4.0 Unported License |
| 5 URL: https://github.com/idleberg/Kimbie-highlight.js |
| 6 */ |
| 7 |
| 8 /* Kimbie Comment */ |
| 9 .hljs-comment, |
| 10 .hljs-title { |
| 11 color: #d6baad; |
| 12 } |
| 13 |
| 14 /* Kimbie Red */ |
| 15 .hljs-variable, |
| 16 .hljs-attribute, |
| 17 .hljs-tag, |
| 18 .hljs-regexp, |
| 19 .ruby .hljs-constant, |
| 20 .xml .hljs-tag .hljs-title, |
| 21 .xml .hljs-pi, |
| 22 .xml .hljs-doctype, |
| 23 .html .hljs-doctype, |
| 24 .css .hljs-id, |
| 25 .css .hljs-class, |
| 26 .css .hljs-pseudo { |
| 27 color: #dc3958; |
| 28 } |
| 29 |
| 30 /* Kimbie Orange */ |
| 31 .hljs-number, |
| 32 .hljs-preprocessor, |
| 33 .hljs-built_in, |
| 34 .hljs-literal, |
| 35 .hljs-params, |
| 36 .hljs-constant { |
| 37 color: #f79a32; |
| 38 } |
| 39 |
| 40 /* Kimbie Yellow */ |
| 41 .ruby .hljs-class .hljs-title, |
| 42 .css .hljs-rules .hljs-attribute { |
| 43 color: #f06431; |
| 44 } |
| 45 |
| 46 /* Kimbie Green */ |
| 47 .hljs-string, |
| 48 .hljs-value, |
| 49 .hljs-inheritance, |
| 50 .hljs-header, |
| 51 .ruby .hljs-symbol, |
| 52 .xml .hljs-cdata { |
| 53 color: #889b4a; |
| 54 } |
| 55 |
| 56 /* Kimbie Aqua */ |
| 57 .css .hljs-hexcolor { |
| 58 color: #088649; |
| 59 } |
| 60 |
| 61 /* Kimbie Blue */ |
| 62 .hljs-function, |
| 63 .python .hljs-decorator, |
| 64 .python .hljs-title, |
| 65 .ruby .hljs-function .hljs-title, |
| 66 .ruby .hljs-title .hljs-keyword, |
| 67 .perl .hljs-sub, |
| 68 .javascript .hljs-title, |
| 69 .coffeescript .hljs-title { |
| 70 color: #8ab1b0; |
| 71 } |
| 72 |
| 73 /* Kimbie Purple */ |
| 74 .hljs-keyword, |
| 75 .javascript .hljs-function { |
| 76 color: #98676a; |
| 77 } |
| 78 |
| 79 .hljs { |
| 80 display: block; |
| 81 overflow-x: auto; |
| 82 background: #221a0f; |
| 83 color: #d3af86; |
| 84 padding: 0.5em; |
| 85 -webkit-text-size-adjust: none; |
| 86 } |
| 87 |
| 88 .coffeescript .javascript, |
| 89 .javascript .xml, |
| 90 .tex .hljs-formula, |
| 91 .xml .javascript, |
| 92 .xml .vbscript, |
| 93 .xml .css, |
| 94 .xml .hljs-cdata { |
| 95 opacity: 0.5; |
| 96 } |
OLD | NEW |