1/* desert scheme ported from vim to google prettify */
2pre.prettyprint { display: block; background-color: #333 }
3pre .nocode { background-color: none; color: #000 }
4pre .str { color: #ffa0a0 } /* string  - pink */
5pre .kwd { color: #f0e68c; font-weight: bold }
6pre .com { color: #87ceeb } /* comment - skyblue */
7pre .typ { color: #98fb98 } /* type    - lightgreen */
8pre .lit { color: #cd5c5c } /* literal - darkred */
9pre .pun { color: #fff }    /* punctuation */
10pre .pln { color: #fff }    /* plaintext */
11pre .tag { color: #f0e68c; font-weight: bold } /* html/xml tag    - lightyellow */
12pre .atn { color: #bdb76b; font-weight: bold } /* attribute name  - khaki */
13pre .atv { color: #ffa0a0 } /* attribute value - pink */
14pre .dec { color: #98fb98 } /* decimal         - lightgreen */
15
16/* Specify class=linenums on a pre to get line numbering */
17ol.linenums { margin-top: 0; margin-bottom: 0; color: #AEAEAE } /* IE indents via margin-left */
18li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8 { list-style-type: none }
19/* Alternate shading for lines */
20li.L1,li.L3,li.L5,li.L7,li.L9 { }
21
22@media print {
23  pre.prettyprint { background-color: none }
24  pre .str, code .str { color: #060 }
25  pre .kwd, code .kwd { color: #006; font-weight: bold }
26  pre .com, code .com { color: #600; font-style: italic }
27  pre .typ, code .typ { color: #404; font-weight: bold }
28  pre .lit, code .lit { color: #044 }
29  pre .pun, code .pun { color: #440 }
30  pre .pln, code .pln { color: #000 }
31  pre .tag, code .tag { color: #006; font-weight: bold }
32  pre .atn, code .atn { color: #404 }
33  pre .atv, code .atv { color: #060 }
34}
35