foundation.css in Prismatic 2.1, at lib/highlight/css/foundation.css
| 1 | /* |
| 2 | Description: Foundation 4 docs style for highlight.js |
| 3 | Author: Dan Allen <dan.j.allen@gmail.com> |
| 4 | Website: http://foundation.zurb.com/docs/ |
| 5 | Version: 1.0 |
| 6 | Date: 2013-04-02 |
| 7 | */ |
| 8 | |
| 9 | .hljs { |
| 10 | display: block; |
| 11 | overflow-x: auto; |
| 12 | padding: 0.5em; |
| 13 | background: #eee; color: black; |
| 14 | } |
| 15 | |
| 16 | .hljs-link, |
| 17 | .hljs-emphasis, |
| 18 | .hljs-attribute, |
| 19 | .hljs-addition { |
| 20 | color: #070; |
| 21 | } |
| 22 | |
| 23 | .hljs-emphasis { |
| 24 | font-style: italic; |
| 25 | } |
| 26 | |
| 27 | .hljs-strong, |
| 28 | .hljs-string, |
| 29 | .hljs-deletion { |
| 30 | color: #d14; |
| 31 | } |
| 32 | |
| 33 | .hljs-strong { |
| 34 | font-weight: bold; |
| 35 | } |
| 36 | |
| 37 | .hljs-quote, |
| 38 | .hljs-comment { |
| 39 | color: #998; |
| 40 | font-style: italic; |
| 41 | } |
| 42 | |
| 43 | .hljs-section, |
| 44 | .hljs-title { |
| 45 | color: #900; |
| 46 | } |
| 47 | |
| 48 | .hljs-class .hljs-title, |
| 49 | .hljs-type { |
| 50 | color: #458; |
| 51 | } |
| 52 | |
| 53 | .hljs-variable, |
| 54 | .hljs-template-variable { |
| 55 | color: #336699; |
| 56 | } |
| 57 | |
| 58 | .hljs-bullet { |
| 59 | color: #997700; |
| 60 | } |
| 61 | |
| 62 | .hljs-meta { |
| 63 | color: #3344bb; |
| 64 | } |
| 65 | |
| 66 | .hljs-code, |
| 67 | .hljs-number, |
| 68 | .hljs-literal, |
| 69 | .hljs-keyword, |
| 70 | .hljs-selector-tag { |
| 71 | color: #099; |
| 72 | } |
| 73 | |
| 74 | .hljs-regexp { |
| 75 | background-color: #fff0ff; |
| 76 | color: #880088; |
| 77 | } |
| 78 | |
| 79 | .hljs-symbol { |
| 80 | color: #990073; |
| 81 | } |
| 82 | |
| 83 | .hljs-tag, |
| 84 | .hljs-name, |
| 85 | .hljs-selector-id, |
| 86 | .hljs-selector-class { |
| 87 | color: #007700; |
| 88 | } |
| 89 |