-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathhightlight.css
More file actions
83 lines (67 loc) · 1.01 KB
/
hightlight.css
File metadata and controls
83 lines (67 loc) · 1.01 KB
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
pre, code {
background-color: #f4f4f4;
color: #1a1a1a;
}
.hl-keyword {
color: #b22222;
}
.hl-property {
color: #6a0dad;
}
.hl-attribute {
color: #795548;
font-style: italic;
}
.hl-type {
color: #d93025;
}
.hl-generic {
color: #9c27b0;
}
.hl-value,
.hl-literal,
.hl-number {
color: #0645ad;
}
.hl-variable {
color: #c16000;
}
.hl-comment {
color: #4b5258;
font-weight: 500;
}
.hl-blur {
filter: blur(2px);
}
.hl-strong {
font-weight: bold;
}
.hl-em {
font-style: italic;
}
.hl-addition {
display: inline-block;
min-width: 100%;
background-color: #00FF0022;
}
.hl-deletion {
display: inline-block;
min-width: 100%;
background-color: #FF000011;
}
.hl-gutter {
display: inline-block;
font-size: 0.9em;
color: #333;
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;
}