-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathixmlhighlight.css
45 lines (44 loc) · 947 Bytes
/
ixmlhighlight.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
:root {
/* --symbol-fonts: "Arial Unicode", "Apple Symbols", "Symbol", "Symbola_hint";
--body-family: "Noto Serif", serif, var(--symbol-fonts);
--title-family: "Noto Sans", sans-serif, var(--symbol-fonts);
--mono-family: "B612 Mono", monospace, var(--symbol-fonts);*/
--text-color: rgb(0,0,0);
--comment-color: rgb(86,180,233);
--value-color: rgb(0,114,178);
--name-color: rgb(0,158,115);
--mark-color: rgb(213,94,0);
}
pre.highlightSyntax *{
font-family: monospace;
}
.mark, .tmark {
color:red;
}
.alias {
color:brown;
}
.occurrence {
color: red;
}
.version {
font-weight:bold;
color: green;
}
.name {
font-weight:bold;
color: var(--value-color);
}
.nonterminal {
color: blue;
}
.string, .from, .to, .hex, .code {
color: darkgreen;
}
.comment {
font-size:smaller;
color: var(--comment-color);
}
.noRef {
font-style: italic;
}