foundation.css

  1/*
  2Description: Foundation 4 docs style for highlight.js
  3Author: Dan Allen <dan.j.allen@gmail.com>
  4Website: http://foundation.zurb.com/docs/
  5Version: 1.0
  6Date: 2013-04-02
  7*/
  8
  9.hljs {
 10  display: block;
 11  overflow-x: auto;
 12  padding: 0.5em;
 13  background: #eee;
 14  -webkit-text-size-adjust: none;
 15}
 16
 17.hljs-header,
 18.hljs-decorator,
 19.hljs-annotation {
 20  color: #000077;
 21}
 22
 23.hljs-horizontal_rule,
 24.hljs-link_url,
 25.hljs-emphasis,
 26.hljs-attribute {
 27  color: #070;
 28}
 29
 30.hljs-emphasis {
 31  font-style: italic;
 32}
 33
 34.hljs-link_label,
 35.hljs-strong,
 36.hljs-value,
 37.hljs-string,
 38.scss .hljs-value .hljs-string {
 39  color: #d14;
 40}
 41
 42.hljs-strong {
 43  font-weight: bold;
 44}
 45
 46.hljs-blockquote,
 47.hljs-comment {
 48  color: #998;
 49  font-style: italic;
 50}
 51
 52.asciidoc .hljs-title,
 53.hljs-function .hljs-title {
 54  color: #900;
 55}
 56
 57.hljs-class {
 58  color: #458;
 59}
 60
 61.hljs-id,
 62.hljs-pseudo,
 63.hljs-constant,
 64.hljs-hexcolor {
 65  color: teal;
 66}
 67
 68.hljs-variable {
 69  color: #336699;
 70}
 71
 72.hljs-bullet {
 73  color: #997700;
 74}
 75
 76.hljs-pi,
 77.hljs-doctype {
 78  color: #3344bb;
 79}
 80
 81.hljs-code,
 82.hljs-number {
 83  color: #099;
 84}
 85
 86.hljs-important {
 87  color: #f00;
 88}
 89
 90.smartquote,
 91.hljs-label {
 92  color: #970;
 93}
 94
 95.hljs-preprocessor,
 96.hljs-pragma {
 97  color: #579;
 98}
 99
100.hljs-reserved,
101.hljs-keyword,
102.scss .hljs-value {
103  color: #000;
104}
105
106.hljs-regexp {
107  background-color: #fff0ff;
108  color: #880088;
109}
110
111.hljs-symbol {
112  color: #990073;
113}
114
115.hljs-symbol .hljs-string {
116  color: #a60;
117}
118
119.hljs-tag {
120  color: #007700;
121}
122
123.hljs-at_rule,
124.hljs-at_rule .hljs-keyword {
125  color: #088;
126}
127
128.hljs-at_rule .hljs-preprocessor {
129  color: #808;
130}
131
132.scss .hljs-tag,
133.scss .hljs-attribute {
134  color: #339;
135}