-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
mod.css
125 lines (114 loc) · 1.86 KB
/
mod.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
121
122
123
124
125
:root,[data-color-scheme="light"] {
--comment: #57606a;
--function: #6639ba;
--language: #0550ae;
--string: #0a307b;
--keyword: #cf2248;
--html: #0550ae;
--section: #0349b4;
--bullet: #953800;
}
[data-color-scheme="dark"] {
--comment: #8b949e;
--function: #d2a8ff;
--language: #79c0ff;
--string: #a5d6ff;
--keyword: #ff7b72;
--html: #7ee787;
--section: #409eff;
--bullet: #ffa657;
}
@media (prefers-color-scheme: dark) {
:root:not([data-color-scheme="light"]) {
--comment: #8b949e;
--function: #d2a8ff;
--language: #79c0ff;
--string: #a5d6ff;
--keyword: #ff7b72;
--html: #7ee787;
--section: #409eff;
--bullet: #ffa657;
}
}
/* Code */
.hljs-comment {
color: var(--comment);
}
/* Code */
.hljs-keyword,
.hljs-type,
.hljs-symbol,
.hljs-name {
color: var(--keyword);
}
/* Code */
.hljs-title,
.hljs-meta {
color: var(--function);
}
/* Code */
.hljs-literal,
.hljs-number,
.hljs-operator,
.hljs-property,
/* HTML */
.hljs-attr,
/* CSS */
.hljs-selector-id,
.hljs-selector-class,
.hljs-selector-pseudo,
.hljs-attribute,
/* Markdown */
.hljs-code,
/* Bash */
.hljs-built_in {
color: var(--language)
}
/* Code */
.hljs-string,
.hljs-regexp,
/* Markdown */
.hljs-link {
color: var(--string);
}
/* Code */
.hljs-variable,
.hljs-title.class_,
.hljs-subst,
/* HTML */
.hljs-tag,
/* CSS */
.hljs-selector-attr {
color: var(--default);
}
/* HTML */
.hljs-tag .hljs-name,
/* CSS */
.hljs-selector-tag,
/* Markdown */
.hljs-quote {
color: var(--html);
}
/* Markdown */
.hljs-section {
color: var(--section);
font-weight: bold;
}
.hljs-bullet {
color: var(--bullet);
}
.hljs-emphasis {
font-style: italic;
}
.hljs-strong {
font-weight: bold;
}
/* Diff */
.hljs-addition {
background-color: var(--bg-success);
color: var(--success);
}
.hljs-deletion {
background-color: var(--bg-danger);
color: var(--danger);
}