default.css in Prismatic 2.2, at lib/highlight/css/default.css
| 1 | /* |
| 2 | |
| 3 | Original highlight.js style (c) Ivan Sagalaev <maniac@softwaremaniacs.org> |
| 4 | |
| 5 | */ |
| 6 | |
| 7 | .hljs { |
| 8 | display: block; |
| 9 | overflow-x: auto; |
| 10 | padding: 0.5em; |
| 11 | background: #F0F0F0; |
| 12 | } |
| 13 | |
| 14 | |
| 15 | /* Base color: saturation 0; */ |
| 16 | |
| 17 | .hljs, |
| 18 | .hljs-subst { |
| 19 | color: #444; |
| 20 | } |
| 21 | |
| 22 | .hljs-comment { |
| 23 | color: #888888; |
| 24 | } |
| 25 | |
| 26 | .hljs-keyword, |
| 27 | .hljs-attribute, |
| 28 | .hljs-selector-tag, |
| 29 | .hljs-meta-keyword, |
| 30 | .hljs-doctag, |
| 31 | .hljs-name { |
| 32 | font-weight: bold; |
| 33 | } |
| 34 | |
| 35 | |
| 36 | /* User color: hue: 0 */ |
| 37 | |
| 38 | .hljs-type, |
| 39 | .hljs-string, |
| 40 | .hljs-number, |
| 41 | .hljs-selector-id, |
| 42 | .hljs-selector-class, |
| 43 | .hljs-quote, |
| 44 | .hljs-template-tag, |
| 45 | .hljs-deletion { |
| 46 | color: #880000; |
| 47 | } |
| 48 | |
| 49 | .hljs-title, |
| 50 | .hljs-section { |
| 51 | color: #880000; |
| 52 | font-weight: bold; |
| 53 | } |
| 54 | |
| 55 | .hljs-regexp, |
| 56 | .hljs-symbol, |
| 57 | .hljs-variable, |
| 58 | .hljs-template-variable, |
| 59 | .hljs-link, |
| 60 | .hljs-selector-attr, |
| 61 | .hljs-selector-pseudo { |
| 62 | color: #BC6060; |
| 63 | } |
| 64 | |
| 65 | |
| 66 | /* Language color: hue: 90; */ |
| 67 | |
| 68 | .hljs-literal { |
| 69 | color: #78A960; |
| 70 | } |
| 71 | |
| 72 | .hljs-built_in, |
| 73 | .hljs-bullet, |
| 74 | .hljs-code, |
| 75 | .hljs-addition { |
| 76 | color: #397300; |
| 77 | } |
| 78 | |
| 79 | |
| 80 | /* Meta color: hue: 200 */ |
| 81 | |
| 82 | .hljs-meta { |
| 83 | color: #1f7199; |
| 84 | } |
| 85 | |
| 86 | .hljs-meta-string { |
| 87 | color: #4d99bf; |
| 88 | } |
| 89 | |
| 90 | |
| 91 | /* Misc effects */ |
| 92 | |
| 93 | .hljs-emphasis { |
| 94 | font-style: italic; |
| 95 | } |
| 96 | |
| 97 | .hljs-strong { |
| 98 | font-weight: bold; |
| 99 | } |
| 100 |