1/* Pretty printing styles. Used with prettify.js. */
2/* Vim sunburst theme by David Leibovic */
3
4pre .str, code .str { color: #65B042; } /* string  - green */
5pre .kwd, code .kwd { color: #E28964; } /* keyword - dark pink */
6pre .com, code .com { color: #AEAEAE; font-style: italic; } /* comment - gray */
7pre .typ, code .typ { color: #89bdff; } /* type - light blue */
8pre .lit, code .lit { color: #3387CC; } /* literal - blue */
9pre .pun, code .pun { color: #fff; } /* punctuation - white */
10pre .pln, code .pln { color: #fff; } /* plaintext - white */
11pre .tag, code .tag { color: #89bdff; } /* html/xml tag    - light blue */
12pre .atn, code .atn { color: #bdb76b; } /* html/xml attribute name  - khaki */
13pre .atv, code .atv { color: #65B042; } /* html/xml attribute value - green */
14pre .dec, code .dec { color: #3387CC; } /* decimal - blue */
15
16pre.prettyprint, code.prettyprint {
17	background-color: #000;
18	border-radius: 8px;
19}
20
21pre.prettyprint {
22	width: 95%;
23	margin: 1em auto;
24	padding: 1em;
25	white-space: pre-wrap;
26}
27
28
29/* Specify class=linenums on a pre to get line numbering */
30ol.linenums { margin-top: 0; margin-bottom: 0; color: #AEAEAE; } /* IE indents via margin-left */
31li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8 { list-style-type: none }
32/* Alternate shading for lines */
33li.L1,li.L3,li.L5,li.L7,li.L9 { }
34
35@media print {
36  pre .str, code .str { color: #060; }
37  pre .kwd, code .kwd { color: #006; font-weight: bold; }
38  pre .com, code .com { color: #600; font-style: italic; }
39  pre .typ, code .typ { color: #404; font-weight: bold; }
40  pre .lit, code .lit { color: #044; }
41  pre .pun, code .pun { color: #440; }
42  pre .pln, code .pln { color: #000; }
43  pre .tag, code .tag { color: #006; font-weight: bold; }
44  pre .atn, code .atn { color: #404; }
45  pre .atv, code .atv { color: #060; }
46}
47