forked from Yukaii/vscode-markdown-github-css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.css
More file actions
37 lines (31 loc) · 652 Bytes
/
github.css
File metadata and controls
37 lines (31 loc) · 652 Bytes
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
/* Overwrite vscode dark markdown theme */
body {
background-color: white !important;
padding: .5em 5em;
}
.vscode-dark {
color: rgb(30, 30, 30);
}
.vscode-dark code {
color: #333;
tab-size: 2em;
background-color: #f7f7f7 !important;
padding: 0 !important;
padding-top: 0.2em !important;
padding-bottom: 0.2em !important;
}
.vscode-dark code > div {
color: #333;
background-color: #f7f7f7;
}
.vscode-dark table > thead > tr > th {
border-color: rgba(0, 0, 0, 0.69);
}
.vscode-dark h1,
.vscode-dark hr,
.vscode-dark table > tbody > tr + tr > td {
border-color: rgba(0, 0, 0, 0.18);
}
.vscode-dark blockquote {
background: #fefefe;
}