-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsyntax-highlighting.css
More file actions
51 lines (41 loc) · 1.01 KB
/
Copy pathsyntax-highlighting.css
File metadata and controls
51 lines (41 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
:root {
--hl-comment: #9da8bb;
--hl-keyword: #9bedff;
--hl-builtin: #ff94d1;
--hl-string: #95ffc3;
--hl-ident: #d8a8ff;
--hl-number: var(--hl-string);
}
a-c, a-cd, a-er {
color: var(--hl-comment);
}
a-k, a-kc, a-ko, a-kd, a-ke, a-kf, a-ki, a-kp, a-kr, a-kt, a-ky, a-km, a-dr,
a-in, a-sc, a-rp, a-cn, a-ex, a-pp,
a-co, a-cb, a-m,
a-tu, a-tr {
color: var(--hl-keyword);
font-weight: bold;
}
/* builtins & types */
a-t, a-tb, a-tq, a-tf, a-fb {
color: var(--hl-builtin);
}
a-s, a-ss, a-se, a-rx, a-ch, a-cs {
color: var(--hl-string);
}
a-n {
color: var(--hl-number);
}
a-f, a-fm, a-fd, a-fc, a-cr, a-ns,
a-tg, a-td, a-at, a-pr, a-vm, a-l {
color: var(--hl-ident);
}
a-da { color: var(--hl-string); }
a-dd { color: var(--hl-comment); }
a-em { font-style: italic; }
a-st, a-tt { font-weight: bold; }
a-tx { text-decoration: line-through; }
/* match the old behaviour of only colouring shell-script variables */
.language-bash a-v, .language-shell a-v, .language-zsh a-v {
color: var(--hl-ident);
}