-
Notifications
You must be signed in to change notification settings - Fork 7
/
base.html
113 lines (111 loc) · 3.51 KB
/
base.html
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<html>
<head>
<title></title>
<style type="text/css">
.attribute {
background-color: #fcffc7;
}
.character {
background-color: #fc674e;
}
.comment {
background-color: #263f45;
}
.comment.doc {
background-color: #396269;
}
.comment.doc.keyword {
background-color: #5997a3;
}
.identifier.class {
background-color: #c4fefd;
}
.identifier.class.system {
background-color: #c401fd;
}
.identifier.constant {
background-color: #79815d;
}
.identifier.constant.system {
background-color: #8b9474;
}
.identifier.function {
background-color: #77c9d9;
}
.identifier.function.system {
background-color: #60c6d8;
}
.identifier.macro {
background-color: #fab29f;
}
.identifier.macro.system {
background-color: #8a291b;
}
.identifier.type {
background-color: #c5d49c;
}
.identifier.type.system {
background-color: #c5cf8d;
}
.identifier.variable {
background-color: #9dc3bf;
}
.identifier.variable.system {
background-color: #9dc3bf;
}
.keyword {
background-color: #d1fefc;
}
.number {
background-color: #fc674e;
}
.plain {
background-color: #9dc3bf;
}
.preprocessor {
background-color: #d1fefc;
}
.string {
background-color: #8b9474;
}
.url {
background-color: #b3bd93;
}
div {
width: 100%;
height: 20px;
margin-bottom: 2px;
padding: 5px;
}
body {
background: #000000;
font-family: "Helvetica Neue", Arial, sans-serif;
}
</style>
</head>
<body>
<div class="attribute">attribute : #fcffc7 : rgb(252, 255, 199)</div>
<div class="character">character : #fc674e : rgb(252, 103, 78)</div>
<div class="comment">comment : #263f45 : rgb(38, 63, 69)</div>
<div class="comment doc">comment doc : #396269 : rgb(57, 98, 105)</div>
<div class="comment doc keyword">comment doc keyword : #5997a3 : rgb(89, 151, 163)</div>
<div class="identifier class">identifier class : #c4fefd : rgb(196, 254, 253)</div>
<div class="identifier class system">identifier class system : #c401fd : rgb(196, 1, 253)</div>
<div class="identifier constant">identifier constant : #79815d : rgb(121, 129, 93)</div>
<div class="identifier constant system">identifier constant system : #8b9474 : rgb(139, 148, 116)</div>
<div class="identifier function">identifier function : #77c9d9 : rgb(119, 201, 217)</div>
<div class="identifier function system">identifier function system : #60c6d8 : rgb(96, 198, 216)</div>
<div class="identifier macro">identifier macro : #fab29f : rgb(250, 178, 159)</div>
<div class="identifier macro system">identifier macro system : #8a291b : rgb(138, 41, 27)</div>
<div class="identifier type">identifier type : #c5d49c : rgb(197, 212, 156)</div>
<div class="identifier type system">identifier type system : #c5cf8d : rgb(197, 207, 141)</div>
<div class="identifier variable">identifier variable : #9dc3bf : rgb(157, 195, 191)</div>
<div class="identifier variable system">identifier variable system : #9dc3bf : rgb(157, 195, 191)</div>
<div class="keyword">keyword : #d1fefc : rgb(209, 254, 252)</div>
<div class="number">number : #fc674e : rgb(252, 103, 78)</div>
<div class="plain">plain : #9dc3bf : rgb(157, 195, 191)</div>
<div class="preprocessor">preprocessor : #d1fefc : rgb(209, 254, 252)</div>
<div class="string">string : #8b9474 : rgb(139, 148, 116)</div>
<div class="url">url : #b3bd93 : rgb(179, 189, 147)</div>
</body>
</html>