]>
Commit | Line | Data |
---|---|---|
1 | /* JSDoc prettify.js theme */ | |
2 | ||
3 | /* plain text */ | |
4 | .pln { | |
5 | color: #000000; | |
6 | font-weight: normal; | |
7 | font-style: normal; | |
8 | } | |
9 | ||
10 | /* string content */ | |
11 | .str { | |
12 | color: #006400; | |
13 | font-weight: normal; | |
14 | font-style: normal; | |
15 | } | |
16 | ||
17 | /* a keyword */ | |
18 | .kwd { | |
19 | color: #000000; | |
20 | font-weight: bold; | |
21 | font-style: normal; | |
22 | } | |
23 | ||
24 | /* a comment */ | |
25 | .com { | |
26 | font-weight: normal; | |
27 | font-style: italic; | |
28 | } | |
29 | ||
30 | /* a type name */ | |
31 | .typ { | |
32 | color: #000000; | |
33 | font-weight: normal; | |
34 | font-style: normal; | |
35 | } | |
36 | ||
37 | /* a literal value */ | |
38 | .lit { | |
39 | color: #006400; | |
40 | font-weight: normal; | |
41 | font-style: normal; | |
42 | } | |
43 | ||
44 | /* punctuation */ | |
45 | .pun { | |
46 | color: #000000; | |
47 | font-weight: bold; | |
48 | font-style: normal; | |
49 | } | |
50 | ||
51 | /* lisp open bracket */ | |
52 | .opn { | |
53 | color: #000000; | |
54 | font-weight: bold; | |
55 | font-style: normal; | |
56 | } | |
57 | ||
58 | /* lisp close bracket */ | |
59 | .clo { | |
60 | color: #000000; | |
61 | font-weight: bold; | |
62 | font-style: normal; | |
63 | } | |
64 | ||
65 | /* a markup tag name */ | |
66 | .tag { | |
67 | color: #006400; | |
68 | font-weight: normal; | |
69 | font-style: normal; | |
70 | } | |
71 | ||
72 | /* a markup attribute name */ | |
73 | .atn { | |
74 | color: #006400; | |
75 | font-weight: normal; | |
76 | font-style: normal; | |
77 | } | |
78 | ||
79 | /* a markup attribute value */ | |
80 | .atv { | |
81 | color: #006400; | |
82 | font-weight: normal; | |
83 | font-style: normal; | |
84 | } | |
85 | ||
86 | /* a declaration */ | |
87 | .dec { | |
88 | color: #000000; | |
89 | font-weight: bold; | |
90 | font-style: normal; | |
91 | } | |
92 | ||
93 | /* a variable name */ | |
94 | .var { | |
95 | color: #000000; | |
96 | font-weight: normal; | |
97 | font-style: normal; | |
98 | } | |
99 | ||
100 | /* a function name */ | |
101 | .fun { | |
102 | color: #000000; | |
103 | font-weight: bold; | |
104 | font-style: normal; | |
105 | } | |
106 | ||
107 | /* Specify class=linenums on a pre to get line numbering */ | |
108 | ol.linenums { | |
109 | margin-top: 0; | |
110 | margin-bottom: 0; | |
111 | } |