forked from kyoz/purify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpurify.css
83 lines (71 loc) · 1.11 KB
/
purify.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
76
77
78
79
80
81
82
83
/* Purify colors for highlightjs
* Author: Kyoz
* Repository: https://github.com/kyoz/purify/
* License: The MIT License (MIT)
* Copyright: Kyoz ([email protected])
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #FAFAFA;
background: #313440;
}
.hljs-comment,
.hljs-quote {
color: #5F5F87;
font-style: italic;
}
.hljs-doctag,
.hljs-built_in,
.hljs-formula {
color: #FF79C6;
}
.hljs-section,
.hljs-name,
.hljs-selector-tag,
.hljs-deletion,
.hljs-subst {
color: #FF0000;
}
.hljs-literal {
color: #5FAFFF;
}
.hljs-regexp,
.hljs-addition,
.hljs-attribute,
.hljs-keyword,
.hljs-meta-string {
color: #5FFF87;
}
.hljs-string,
.hljs-class .hljs-title {
color: #FFFF87;
}
.hljs-attr,
.hljs-variable,
.hljs-template-variable,
.hljs-type,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-number {
color: #FF875F;
}
.hljs-symbol,
.hljs-bullet,
.hljs-link,
.hljs-meta,
.hljs-selector-id,
.hljs-title {
color: #5FAFFF;
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: normal;
}
.hljs-link {
text-decoration: underline;
}