liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
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
/**
 * All Hallows Eve theme
 *
 * Adapted from Ultraviolet RubyGem
 *
 * @author Flinn Mueller
 * @version 1.0.1
 */
pre {
    background: #000;
    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: #9933CC;
}
 
pre .constant {
    color: #3387CC;
}
 
pre .storage {
    color: #CC7833;
}
 
pre .string {
    color: #66CC33;
}
 
pre .keyword, pre .selector {
    color: #CC7833;
}
 
pre .inherited-class {
    font-style: italic;
}
 
pre .support {
    color: #C83730;
}