-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarkdown.css
196 lines (173 loc) · 4.4 KB
/
markdown.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
@import url("https://fonts.googleapis.com/css?family=PT+Sans&display=swap");
@import url("https://fonts.googleapis.com/css?family=Fira+Sans&display=swap");
@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");
@import url("https://fonts.googleapis.com/css?family=Nunito&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css?family=IBM+Plex+Serif&display=swap");
@import url("https://fonts.googleapis.com/css?family=IBM+Plex+Sans&display=swap");
@import url("https://fonts.googleapis.com/css?family=Crete+Round&display=swap");
@import url("https://fonts.googleapis.com/css?family=Signika=swap");
@import url("https://fonts.googleapis.com/css?family=Solway=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap");
html {
border-radius: 3px;
}
.vscode-dark {
--black: #32302f;
--blue: #89beba;
--cyan: #87c095;
--green: #94af73;
--magenta: #d3a0bc;
--red: #e68183;
--white: #cbbd99;
--yellow: #d9bb80;
--orange: #e39b7b;
--foreground: #cbbd99;
--light-foreground: #b0a386;
--thin-foreground: #7e7156;
--comment: #958875;
}
.vscode-light {
--black: #fbfafc;
--blue: #5A9FD4;
--cyan: #59b093;
--green: #759E17;
--magenta: #aa59b4;
--red: #c74b47;
--white: #54483d;
--yellow: #d79921;
--orange: #d65d0e;
--foreground: #54483d;
--light-foreground: #b8b4ae;
--thin-foreground: #d6d2cd;
--comment: #ae9a9a;
}
.vscode-dark a,
.vscode-light a {
color: var(--blue);
}
.vscode-dark h1,
.vscode-dark h2,
.vscode-dark h3,
.vscode-dark h4,
.vscode-dark h5,
.vscode-dark h6,
.vscode-light h1,
.vscode-light h2,
.vscode-light h3,
.vscode-light h4,
.vscode-light h5,
.vscode-light h6 {
padding-top: 20px;
font-family: "Solway", "Signika", "Roboto Slab", "Crete Round", "Product Sans", "Montserrat", "Century Gothic",
"Cambria", "monospace";
color: var(--yellow);
}
.vscode-dark h1:before,
.vscode-dark h2:before,
.vscode-dark h3:before,
.vscode-dark h4:before,
.vscode-dark h5:before,
.vscode-dark h6:before,
.vscode-light h1:before,
.vscode-light h2:before,
.vscode-light h3:before,
.vscode-light h4:before,
.vscode-light h5:before,
.vscode-light h6:before {
content: "# ";
color: var(--orange);
}
.vscode-dark,
.vscode-light {
font-family: "Roboto", "IBM Plex Sans", "Nunito", "Fira Sans", "PT Sans", "Nunito", "Segoe UI", "sans-serif";
font-size: 17px;
}
.vscode-dark table > thead > tr > th,
.vscode-light table > thead > tr > th {
border-bottom: 1px solid var(--light-foreground);
}
.vscode-dark h1,
.vscode-dark h1 hr,
.vscode-dark table > tbody > tr + tr > td,
.vscode-light h1,
.vscode-light h1 hr,
.vscode-light table > tbody > tr + tr > td {
border-top: 1px solid var(--thin-foreground);
}
.vscode-dark hr,
.vscode-light hr {
border-width: 1px;
border-color: var(--thin-foreground);
}
.vscode-dark blockquote,
.vscode-light blockquote {
color: var(--light-foreground);
/* font-style: italic; */
background: transparent;
border-color: transparent transparent transparent var(--green);
border-style: solid;
border-width: 1px;
overflow: hidden;
padding-top: 12px;
margin-bottom: 16px;
}
/* Code */
.vscode-dark code,
.vscode-light code {
/* font-size: 16px; */
color: var(--cyan);
}
.vscode-dark pre,
.vscode-dark pre code,
.vscode-light pre,
.vscode-light pre code {
font-size: 16px;
color: var(--foreground);
background-color: transparent;
white-space: pre;
}
.vscode-dark pre,
.vscode-light pre {
border: 1px solid var(--thin-foreground);
}
.vscode-dark .hljs-keyword,
.vscode-light .hljs-keyword {
color: var(--red);
}
.vscode-dark .hljs-comment,
.vscode-light .hljs-comment {
color: var(--comment);
}
.vscode-dark .hljs-class .hljs-title,
.vscode-light .hljs-class .hljs-title {
color: var(--green);
font-weight: bold;
}
.vscode-dark .hljs-class .hljs-keyword,
.vscode-light .hljs-class .hljs-keyword {
color: var(--orange);
font-weight: bold;
}
.vscode-dark .hljs-number,
.vscode-light .hljs-number {
color: var(--magenta);
}
.vscode-dark .hljs-string,
.vscode-light .hljs-string {
color: var(--green);
}
.vscode-dark .hljs-function .hljs-title,
.vscode-light .hljs-function .hljs-title {
color: var(--green);
font-weight: bold;
}
.vscode-dark .hljs-function .hljs-params,
.vscode-light .hljs-function .hljs-params {
color: var(--blue);
}
body {
max-width: 1000px;
margin-left: auto;
margin-right: auto;
}