-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata-highlight.css
More file actions
64 lines (57 loc) · 1.07 KB
/
data-highlight.css
File metadata and controls
64 lines (57 loc) · 1.07 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
::highlight(tag),
::highlight(property),
::highlight(literal-property),
::highlight(function-variable),
::highlight(variable),
::highlight(constant),
::highlight(identifier),
::highlight(parameter) {
color: #e06c75;
}
::highlight(entity),
::highlight(function) {
color: #8ea0b2;
}
::highlight(atrule),
::highlight(italic),
::highlight(keyword) {
color: #a685a1;
}
::highlight(attr-value),
::highlight(selector),
::highlight(char),
::highlight(inserted),
::highlight(string) {
color: #98c379;
}
::highlight(doctype),
::highlight(prolog),
::highlight(cdata),
::highlight(comment) {
color: #7f848e;
}
::highlight(builtin),
::highlight(entity),
::highlight(regex),
::highlight(important),
::highlight(attr-name),
::highlight(boolean),
::highlight(number),
::highlight(symbol),
::highlight(deleted),
::highlight(class-name),
::highlight(important),
::highlight(bold),
::highlight(literal) {
color: #d19a66;
}
::highlight(operator),
::highlight(url),
::highlight(punctuation),
::highlight(syntax) {
color: #abb2bf;
}
::highlight(invalid) {
color: white;
background: red;
}