blob: 03c1f6f58db645621bf10093f6f1a11a16721956 (
plain)
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
|
body {
background-color: #000000;
color: #ff0000;
font-weight: normal;
font-style: normal;
}
.keyword {
color: #ffffff;
font-weight: bold;
font-style: normal;
}
.type {
color: #F35E1E;
font-weight: bold;
font-style: normal;
}
.string {
color: #bb00ff;
font-weight: normal;
font-style: normal;
}
.specialchar {
color: #ffffff;
font-weight: normal;
font-style: normal;
}
.comment {
color: #ababab;
font-weight: normal;
font-style: italic;
}
.number {
color: #bb00ff;
font-weight: normal;
font-style: normal;
}
.preproc {
color: #ababab;
font-weight: normal;
font-style: normal;
}
.symbol {
color: #F3E651;
font-weight: normal;
font-style: normal;
}
.function {
color: #7bc710;
font-weight: normal;
font-style: normal;
}
.cbracket {
color: #F3E651;
font-weight: normal;
font-style: normal;
}
|