Created
December 21, 2016 09:49
-
-
Save alexisduque/662ac5c81ae5df913239efae2a002789 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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 { | |
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; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment