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
| /**
| * Monokai theme
| *
| * Adapted from Wimer Hazenberg's TextMate theme of the same name
| *
| * @author Wimer Hazenberg
| * @author Michael Fasani
| * @author Craig Campbell
| * @version 1.0.0
| */
| pre {
| background: #272822;
| word-wrap: break-word;
| margin: 0px;
| padding: 10px;
| color: #fff;
| font-size: 14px;
| margin-bottom: 20px;
| }
|
| pre, code {
| font-family: 'Monaco', courier, monospace;
| }
|
| pre .comment {
| color: #75715E;
| }
|
| pre .constant {
| color: #AE81FF;
| }
|
| pre .storage {
| color: #66D9EF;
| }
|
| pre .string, pre .comment.docstring {
| color: #E6DB74;
| }
|
| pre .support.tag {
| color: #fff;
| }
|
| pre .keyword {
| /* @todo some keywords use this light blue, most use the pink */
| /*color: #66D9EF;*/
| color: #F92672;
| }
|
| pre .selector {
| color: #F92672;
| }
|
| pre .inherited-class {
| font-style: italic;
| }
|
| pre .operator, pre .support.tag-name , pre .entity.tag {
| color: #F92672;
| }
|
| pre .entity, pre .support.attribute, pre .entity.attribute {
| color: #A6E22E;
| }
|
| pre .support, *[data-language="c"] .function.call {
| color: #66D9EF;
| }
|
| *[data-language="html"] .support.operator {
| color: #fff;
| }
|
| pre .css-property, pre .storage.function {
| font-style: italic;
| }
|
| pre .variable.global, pre .variable.class, pre .variable.instance {
| color: #A6E22E;
| }
|
|