1/*
2
3Colorbrewer theme
4Original: https://github.com/mbostock/colorbrewer-theme (c) Mike Bostock <mike@ocks.org>
5Ported by Fabrício Tavares de Oliveira
6
7*/
8
9.hljs {
10 display: block;
11 overflow-x: auto;
12 padding: 0.5em;
13 background: #fff;
14 -webkit-text-size-adjust: none;
15}
16
17.hljs,
18.hljs-subst,
19.hljs-tag .hljs-title,
20.nginx .hljs-title {
21 color: #000;
22}
23
24.hljs-string,
25.hljs-title,
26.hljs-constant,
27.hljs-parent,
28.hljs-tag .hljs-value,
29.hljs-rule .hljs-value,
30.hljs-preprocessor,
31.hljs-pragma,
32.haml .hljs-symbol,
33.ruby .hljs-symbol,
34.ruby .hljs-symbol .hljs-string,
35.hljs-template_tag,
36.django .hljs-variable,
37.smalltalk .hljs-class,
38.hljs-addition,
39.hljs-flow,
40.hljs-stream,
41.bash .hljs-variable,
42.apache .hljs-tag,
43.apache .hljs-cbracket,
44.tex .hljs-command,
45.tex .hljs-special,
46.erlang_repl .hljs-function_or_atom,
47.asciidoc .hljs-header,
48.markdown .hljs-header,
49.coffeescript .hljs-attribute,
50.hljs-name {
51 color: #756bb1;
52}
53
54.smartquote,
55.hljs-comment,
56.hljs-annotation,
57.diff .hljs-header,
58.hljs-chunk,
59.asciidoc .hljs-blockquote,
60.markdown .hljs-blockquote {
61 color: #636363;
62}
63
64.hljs-number,
65.hljs-date,
66.hljs-regexp,
67.hljs-literal,
68.hljs-hexcolor,
69.smalltalk .hljs-symbol,
70.smalltalk .hljs-char,
71.go .hljs-constant,
72.hljs-change,
73.lasso .hljs-variable,
74.makefile .hljs-variable,
75.asciidoc .hljs-bullet,
76.markdown .hljs-bullet,
77.asciidoc .hljs-link_url,
78.markdown .hljs-link_url {
79 color: #31a354;
80}
81
82.hljs-label,
83.ruby .hljs-string,
84.hljs-decorator,
85.hljs-filter .hljs-argument,
86.hljs-localvars,
87.hljs-array,
88.hljs-attr_selector,
89.hljs-important,
90.hljs-pseudo,
91.hljs-pi,
92.haml .hljs-bullet,
93.hljs-doctype,
94.hljs-deletion,
95.hljs-envvar,
96.hljs-shebang,
97.apache .hljs-sqbracket,
98.nginx .hljs-built_in,
99.hljs-list .hljs-built_in,
100.tex .hljs-formula,
101.erlang_repl .hljs-reserved,
102.hljs-prompt,
103.asciidoc .hljs-link_label,
104.markdown .hljs-link_label,
105.vhdl .hljs-attribute,
106.clojure .hljs-attribute,
107.asciidoc .hljs-attribute,
108.lasso .hljs-attribute,
109.coffeescript .hljs-property,
110.hljs-phony {
111 color: #88f;
112}
113
114
115
116.hljs-keyword,
117.hljs-id,
118.hljs-title,
119.hljs-built_in,
120.css .hljs-tag,
121.hljs-doctag,
122.smalltalk .hljs-class,
123.hljs-winutils,
124.bash .hljs-variable,
125.apache .hljs-tag,
126.hljs-type,
127.hljs-typename,
128.tex .hljs-command,
129.asciidoc .hljs-strong,
130.markdown .hljs-strong,
131.hljs-request,
132.hljs-status {
133 color: #3182bd;
134}
135
136.asciidoc .hljs-emphasis,
137.markdown .hljs-emphasis {
138 font-style: italic;
139}
140
141.nginx .hljs-built_in {
142 font-weight: normal;
143}
144
145.coffeescript .javascript,
146.javascript .xml,
147.lasso .markup,
148.tex .hljs-formula,
149.xml .javascript,
150.xml .vbscript,
151.xml .css,
152.xml .hljs-cdata {
153 opacity: 0.5;
154}
155
156.css .hljs-attribute,
157.html .hljs-attribute {
158 color: #e6550d;
159}
160
161.css .hljs-class,
162.html .hljs-tag,
163.html .hljs-title {
164 color: #3182bd;
165}