forked from solidjs/solid-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprism.css
More file actions
47 lines (40 loc) · 744 Bytes
/
prism.css
File metadata and controls
47 lines (40 loc) · 744 Bytes
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
pre[class*="language-"] {
color: theme("colors.slate.50");
}
.token.tag,
.token.class-name,
.token.selector,
.token.selector .class,
.token.selector.class,
.token.function {
color: theme("colors.pink.400");
}
.token.attr-name,
.token.keyword,
.token.rule,
.token.pseudo-class,
.token.important {
color: theme("colors.slate.300");
}
.token.module {
color: theme("colors.pink.400");
}
.token.attr-value,
.token.class,
.token.string,
.token.property {
color: theme("colors.sky.300");
}
.token.punctuation,
.token.attr-equals {
color: theme("colors.slate.500");
}
.token.unit,
.language-css .token.function {
color: theme("colors.teal.200");
}
.token.comment,
.token.operator,
.token.combinator {
color: theme("colors.slate.400");
}