-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprism.scss
55 lines (49 loc) · 983 Bytes
/
prism.scss
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
pre[class*="language-"] {
font-family: 'Roboto Mono', Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
color: rgba(255, 255, 204, 0.8);
background: #330030;
word-spacing: normal;
padding: 1.3em 1.5em;
border-radius: .1em;
word-break: normal;
word-wrap: normal;
font-size: 1.2em;
white-space: pre;
line-height: 1.3;
text-align: left;
margin: 1.5em 0;
overflow: auto;
hyphens: none;
cursor: text;
tab-size: 4;
&::selection,
*::selection {
background: rgb(73, 26, 69);
}
span {
color: rgba(255, 255, 255, 0.6);
}
}
.token.boolean {
color: rgba(255, 255, 204, 0.8);
}
.token.comment {
color: rgba(255, 255, 204, 0.4);
}
.token.string {
color: rgb(255, 255, 204);
}
// markdown
.token.deleted {
color: #ff2c5a;
}
.token.inserted {
color: #5fdf70;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}