-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathprism-dark.css
executable file
·62 lines (49 loc) · 1.67 KB
/
prism-dark.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
/* Code blocks */
html[mode=dark] pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
border-radius: .5em;
}
/* Inline code */
html[mode=dark] :not(pre) > code[class*="language-"] {
padding: .15em .2em .05em;
border-radius: .3em;
white-space: normal;
}
html[mode=dark] .token.comment, html[mode=dark] .token.prolog, html[mode=dark] .token.doctype, html[mode=dark] .token.cdata {
color: hsl(30, 20%, 50%);
}
html[mode=dark] .token.punctuation {
opacity: .7;
}
html[mode=dark] .token.namespace {
opacity: .7;
}
html[mode=dark] .token.property, html[mode=dark] .token.tag, html[mode=dark] .token.boolean, html[mode=dark] .token.number, html[mode=dark] .token.constant, html[mode=dark] .token.symbol {
color: hsl(350, 40%, 70%);
}
html[mode=dark] .token.selector, html[mode=dark] .token.attr-name, html[mode=dark] .token.string, html[mode=dark] .token.char, html[mode=dark] .token.builtin, html[mode=dark] .token.inserted {
color: hsl(75, 70%, 60%);
}
html[mode=dark] .token.operator, html[mode=dark] .token.entity, html[mode=dark] .token.url, html[mode=dark] .language-css html[mode=dark] .token.string, html[mode=dark] .style html[mode=dark] .token.string, html[mode=dark] .token.variable {
color: hsl(40, 90%, 60%);
}
html[mode=dark] .token.atrule, html[mode=dark] .token.attr-value, html[mode=dark] .token.keyword {
color: hsl(350, 40%, 70%);
}
html[mode=dark] .token.regex, html[mode=dark] .token.important {
color: #e90;
}
html[mode=dark] .token.important, html[mode=dark] .token.bold {
font-weight: bold;
}
html[mode=dark] .token.italic {
font-style: italic;
}
html[mode=dark] .token.entity {
cursor: help;
}
html[mode=dark] .token.deleted {
color: red;
}