-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscheme.css
75 lines (63 loc) · 1.2 KB
/
scheme.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
63
64
65
66
67
68
69
70
71
72
73
74
75
code[class*="language-"] {
font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier,
monospace;
}
pre[class*="language-"],
code[class*="language-"] {
font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier,
monospace;
color: #393a34;
direction: ltr;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
font-size: 12px;
line-height: 20px;
tab-size: 4;
hyphens: none;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
background-color: rgba(27, 31, 35, 0.05);
padding: 0.2em 0.4em;
border-radius: 3px;
font-size: 85%;
}
.token.keyword,
.token.operator,
.token.script > .token.script-punctuation {
color: #d73a49;
}
.token.function,
.token.script > .token.keyword,
.token.constant,
.token.number,
.token.boolean {
color: #005cc5;
}
.token.string,
.token.attr-value {
color: #032f62;
}
.token.punctuation + .token.function:not(.function-variable),
.token.attr-name {
color: #6f42c1;
}
.token.comment {
color: #6a737d;
}
.token.tag {
color: #22863a;
}
.token.script,
.token.punctuation {
color: #24292e;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}