-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathhighlight.css
102 lines (87 loc) · 1.65 KB
/
highlight.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
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
.hljs {
color: var(--syntax-text);
}
.hljs-doctag,
.hljs-keyword,
.hljs-meta .hljs-keyword,
.hljs-template-tag,
.hljs-template-variable,
.hljs-type,
.hljs-variable.language_ {
color: var(--syntax-keyword);
}
.hljs-title,
.hljs-title.class_,
.hljs-title.class_.inherited__,
.hljs-title.function_ {
color: var(--syntax-entity);
}
.hljs-attr,
.hljs-attribute,
.hljs-literal,
.hljs-meta,
.hljs-number,
.hljs-operator,
.hljs-variable,
.hljs-selector-attr,
.hljs-selector-class,
.hljs-selector-id {
color: var(--syntax-constant);
}
.hljs-regexp,
.hljs-string,
.hljs-meta .hljs-string {
color: var(--syntax-string);
}
.hljs-built_in,
.hljs-symbol {
color: var(--syntax-symbol);
font-style: bold;
}
.hljs-comment,
.hljs-code,
.hljs-formula {
color: var(--syntax-comment);
font-style: italic;
}
.hljs-name,
.hljs-quote,
.hljs-selector-tag,
.hljs-selector-pseudo {
color: var(--syntax-entity-tag);
}
.hljs-subst {
color: var(--syntax-storage-modifier-import);
}
.hljs-section {
color: var(--syntax-markup-heading);
font-weight: bold;
}
.hljs-bullet {
color: var(--syntax-markup-bullet);
}
.hljs-emphasis {
color: var(--syntax-markup-italic);
font-style: italic;
}
.hljs-strong {
color: var(--syntax-markup-bold);
font-weight: bold;
}
.hljs-addition {
color: var(--syntax-markup-inserted-fg);
background-color: var(--syntax-markup-inserted-bg);
}
.hljs-deletion {
color: var(--syntax-markup-deleted-fg);
background-color: var(--syntax-markup-deleted-bg);
}
.hljs-char.escape_,
.hljs-link,
.hljs-params,
.hljs-property,
.hljs-punctuation,
.hljs-tag {
/* purposely ignored */
color: inherit;
}