forked from clenemt/docdash
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathprettify.css
82 lines (66 loc) · 977 Bytes
/
prettify.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*! Color themes for Google Code Prettify | MIT License | github.com/jmblog/color-themes-for-google-code-prettify */
.pln {
color: #1b1918;
}
/* string content */
.str {
color: #7b9726;
}
/* a keyword */
.kwd {
color: #6666ea;
}
/* a comment */
.com {
color: #9c9491;
}
/* a type name */
.typ {
color: #407ee7;
}
/* a literal value */
.lit {
color: #df5320;
}
/* punctuation */
.pun {
color: #1b1918;
}
/* lisp open bracket */
.opn {
color: #1b1918;
}
/* lisp close bracket */
.clo {
color: #1b1918;
}
/* a markup tag name */
.tag {
color: #f22c40;
}
/* a markup attribute name */
.atn {
color: #df5320;
}
/* a markup attribute value */
.atv {
color: #3d97b8;
}
/* a declaration */
.dec {
color: #df5320;
}
/* a variable name */
.var {
color: #f22c40;
}
/* a function name */
.fun {
color: #407ee7;
}
/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
margin-top: 0;
margin-bottom: 0;
color: #9c9491;
}