1 | .pln {
|
2 | color: #ddd;
|
3 | }
|
4 |
|
5 | /* string content */
|
6 | .str {
|
7 | color: #61ce3c;
|
8 | }
|
9 |
|
10 | /* a keyword */
|
11 | .kwd {
|
12 | color: #fbde2d;
|
13 | }
|
14 |
|
15 | /* a comment */
|
16 | .com {
|
17 | color: #aeaeae;
|
18 | }
|
19 |
|
20 | /* a type name */
|
21 | .typ {
|
22 | color: #8da6ce;
|
23 | }
|
24 |
|
25 | /* a literal value */
|
26 | .lit {
|
27 | color: #fbde2d;
|
28 | }
|
29 |
|
30 | /* punctuation */
|
31 | .pun {
|
32 | color: #ddd;
|
33 | }
|
34 |
|
35 | /* lisp open bracket */
|
36 | .opn {
|
37 | color: #000000;
|
38 | }
|
39 |
|
40 | /* lisp close bracket */
|
41 | .clo {
|
42 | color: #000000;
|
43 | }
|
44 |
|
45 | /* a markup tag name */
|
46 | .tag {
|
47 | color: #8da6ce;
|
48 | }
|
49 |
|
50 | /* a markup attribute name */
|
51 | .atn {
|
52 | color: #fbde2d;
|
53 | }
|
54 |
|
55 | /* a markup attribute value */
|
56 | .atv {
|
57 | color: #ddd;
|
58 | }
|
59 |
|
60 | /* a declaration */
|
61 | .dec {
|
62 | color: #EF5050;
|
63 | }
|
64 |
|
65 | /* a variable name */
|
66 | .var {
|
67 | color: #c82829;
|
68 | }
|
69 |
|
70 | /* a function name */
|
71 | .fun {
|
72 | color: #4271ae;
|
73 | }
|
74 |
|
75 | /* Specify class=linenums on a pre to get line numbering */
|
76 | ol.linenums {
|
77 | margin-top: 0;
|
78 | margin-bottom: 0;
|
79 | padding-bottom: 2px;
|
80 | }
|