-
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathhighlight-light-lite.css
More file actions
79 lines (63 loc) · 929 Bytes
/
highlight-light-lite.css
File metadata and controls
79 lines (63 loc) · 929 Bytes
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
pre, code {
color: #000;
background-color: #f3f3f3;
}
.hl-keyword {
color: #4285F4;
}
.hl-property {
color: #34A853;
}
.hl-attribute {
font-style: italic;
}
.hl-type {
color: #EA4334;
}
.hl-generic {
color: #9d3af6;
}
.hl-number,
.hl-literal,
.hl-value {
color: #000;
}
.hl-variable {
color: #000;
}
.hl-comment {
color: #888888;
}
.hl-blur {
filter: blur(2px);
}
.hl-strong {
font-weight: bold;
}
.hl-em {
font-style: italic;
}
.hl-addition {
min-width: 100%;
background-color: #00FF0022;
}
.hl-deletion {
min-width: 100%;
background-color: #FF000011;
}
.hl-gutter {
display: inline-block;
font-size: 0.9em;
color: #555;
padding: 0 1ch;
margin-right: 1ch;
user-select: none;
}
.hl-gutter-addition {
background-color: #34A853;
color: #fff;
}
.hl-gutter-deletion {
background-color: #EA4334;
color: #fff;
}