-
Notifications
You must be signed in to change notification settings - Fork 0
/
type.css
71 lines (58 loc) · 821 Bytes
/
type.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
#main {
position: absolute;
top: 20%;
left: 10%;
font-family: monospace;
/* font-weight: bold; */
font-size: 1.2em;
/* background: rgba(0, 0, 0, 0); */
background-color: transparent;
}
.keyword {
/* color: #0000ff; */
color: #c5b2ff;
}
.class {
/* color: #269fa9; */
color: #ffeead;
}
.variable {
/* color: #0070c1; */
color: #ff9da4;
}
.comment {
color: #008000;
/* color: #39435b; */
}
.method {
/* color: #795e25; */
color: #bbdaff;
}
.string {
/* color: #ab3838; */
color: #94e4a9;
}
.field {
/* color: #0010c0; */
color: #de97a4;
}
.success {
color: #00a000;
}
.error {
color: #f00000;
}
.operator {
/* color: #000000; */
color: #99ffff;
}
.number {
/* color: #00a000; */
color: #be4d3e;
}
.curser {
color: #99ffff;
}
.text {
color: #c2c2c2;
}