-
Notifications
You must be signed in to change notification settings - Fork 0
/
highlight.css
120 lines (108 loc) · 1.99 KB
/
highlight.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/**
* Monokai style - ported by Luigi Maselli - http://grigio.org
*/
.hljs {
display: block;
font-family:
San Francisco Mono,
Monaco,
Consolas,
Lucida Console,
DejaVu Sans Mono,
Bitstream Vera Sans Mono,
monospace;
overflow-x: auto;
font-weight: normal;
}
.dark .hljs {
color: #ddd;
}
.dark .hljs-tag,
.dark .hljs-keyword,
.dark .hljs-selector-tag,
.dark .hljs-literal,
.dark .hljs-strong,
.dark .hljs-name {
color: #d13787;
}
.dark .hljs-code {
color: #66d9ef;
}
.dark .hljs-attribute,
.dark .hljs-symbol,
.dark .hljs-regexp,
.dark .hljs-link {
color: #bf79db;
}
.light .hljs-class,
.dark .hljs-string,
.dark .hljs-bullet,
.dark .hljs-subst,
.dark .hljs-title,
.dark .hljs-section,
.dark .hljs-emphasis,
.dark .hljs-type,
.dark .hljs-built_in,
.dark .hljs-builtin-name,
.dark .hljs-selector-attr,
.dark .hljs-selector-pseudo,
.dark .hljs-addition,
.dark .hljs-variable,
.dark .hljs-template-tag,
.dark .hljs-template-variable {
color: #a6e22e;
}
.dark .hljs-comment,
.dark .hljs-quote,
.dark .hljs-deletion,
.dark .hljs-meta {
color: #c3c0af;
}
/**
* Monokai style - ported by Luigi Maselli - http://grigio.org
*/
.light .hljs {
color: #34383e;
}
.light .hljs-tag,
.light .hljs-keyword,
.light .hljs-selector-tag,
.light .hljs-literal,
.light .hljs-strong,
.light .hljs-name {
color: #d13787;
}
.light .hljs-code {
color: #66d9ef;
}
.light .hljs-attribute,
.light .hljs-symbol,
.light .hljs-regexp,
.light .hljs-number,
.light .hljs-link {
color: #01988c;
}
.light .hljs-class,
.light .hljs-string,
.light .hljs-bullet,
.light .hljs-subst,
.light .hljs-title,
.light .hljs-section,
.light .hljs-emphasis,
.light .hljs-type,
.light .hljs-built_in,
.light .hljs-builtin-name,
.light .hljs-selector-attr,
.light .hljs-selector-pseudo,
.light .hljs-addition,
.light .hljs-variable,
.light .hljs-template-tag,
.light .hljs-template-variable {
color: #5d4fa1;
}
.light .hljs-comment,
.light .hljs-quote,
.light .hljs-deletion,
.light .hljs-meta {
color: #a0a1a7;
}