obsidian.css in Prismatic 1.9, at lib/highlight/css/obsidian.css
| 1 | /** |
| 2 | * Obsidian style |
| 3 | * ported by Alexander Marenin (http://github.com/ioncreature) |
| 4 | */ |
| 5 | |
| 6 | .hljs { |
| 7 | display: block; |
| 8 | overflow-x: auto; |
| 9 | padding: 0.5em; |
| 10 | background: #282b2e; |
| 11 | } |
| 12 | |
| 13 | .hljs-keyword, |
| 14 | .hljs-selector-tag, |
| 15 | .hljs-literal, |
| 16 | .hljs-selector-id { |
| 17 | color: #93c763; |
| 18 | } |
| 19 | |
| 20 | .hljs-number { |
| 21 | color: #ffcd22; |
| 22 | } |
| 23 | |
| 24 | .hljs { |
| 25 | color: #e0e2e4; |
| 26 | } |
| 27 | |
| 28 | .hljs-attribute { |
| 29 | color: #668bb0; |
| 30 | } |
| 31 | |
| 32 | .hljs-code, |
| 33 | .hljs-class .hljs-title, |
| 34 | .hljs-section { |
| 35 | color: white; |
| 36 | } |
| 37 | |
| 38 | .hljs-regexp, |
| 39 | .hljs-link { |
| 40 | color: #d39745; |
| 41 | } |
| 42 | |
| 43 | .hljs-meta { |
| 44 | color: #557182; |
| 45 | } |
| 46 | |
| 47 | .hljs-tag, |
| 48 | .hljs-name, |
| 49 | .hljs-bullet, |
| 50 | .hljs-subst, |
| 51 | .hljs-emphasis, |
| 52 | .hljs-type, |
| 53 | .hljs-built_in, |
| 54 | .hljs-selector-attr, |
| 55 | .hljs-selector-pseudo, |
| 56 | .hljs-addition, |
| 57 | .hljs-variable, |
| 58 | .hljs-template-tag, |
| 59 | .hljs-template-variable { |
| 60 | color: #8cbbad; |
| 61 | } |
| 62 | |
| 63 | .hljs-string, |
| 64 | .hljs-symbol { |
| 65 | color: #ec7600; |
| 66 | } |
| 67 | |
| 68 | .hljs-comment, |
| 69 | .hljs-quote, |
| 70 | .hljs-deletion { |
| 71 | color: #818e96; |
| 72 | } |
| 73 | |
| 74 | .hljs-selector-class { |
| 75 | color: #A082BD |
| 76 | } |
| 77 | |
| 78 | .hljs-keyword, |
| 79 | .hljs-selector-tag, |
| 80 | .hljs-literal, |
| 81 | .hljs-doctag, |
| 82 | .hljs-title, |
| 83 | .hljs-section, |
| 84 | .hljs-type, |
| 85 | .hljs-name, |
| 86 | .hljs-strong { |
| 87 | font-weight: bold; |
| 88 | } |
| 89 |