Created
October 25, 2021 18:38
-
-
Save starlocke/a88ec6389242911aab02592f4b376088 to your computer and use it in GitHub Desktop.
VS Code Markdown Preview Stylesheet
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
/* | |
- Place this file at the "root" of a workspace/main-folder. | |
- .gitignore this file. | |
- Setup this settings.json configuration like so (substitute the workspace path): | |
{ | |
"markdown.styles": [ | |
"((absolute-path-of-workspace))/md-style.css" | |
] | |
} | |
*/ | |
h1 { | |
font-family: 'Victor Mono', monospace; | |
font-style: italic; | |
font-weight: bold; | |
color: crimson; | |
} | |
h2 { | |
font-family: 'Victor Mono', monospace; | |
font-style: italic; | |
font-weight: bold; | |
color: forestgreen; | |
} | |
h3 { | |
font-family: 'Victor Mono', monospace; | |
font-style: italic; | |
font-weight: bold; | |
color: royalblue; | |
} | |
h4 { | |
font-family: 'Victor Mono', monospace; | |
font-style: italic; | |
font-weight: bold; | |
text-decoration: underline; | |
color: crimson; | |
} | |
h5 { | |
font-family: 'Victor Mono', monospace; | |
font-style: italic; | |
font-weight: bold; | |
text-decoration: underline; | |
color: forestgreen; | |
} | |
h6 { | |
font-family: 'Victor Mono', monospace; | |
font-style: italic; | |
font-weight: bold; | |
text-decoration: underline; | |
color: royalblue; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment