Skip to content

Instantly share code, notes, and snippets.

@starlocke
Created October 25, 2021 18:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save starlocke/a88ec6389242911aab02592f4b376088 to your computer and use it in GitHub Desktop.
Save starlocke/a88ec6389242911aab02592f4b376088 to your computer and use it in GitHub Desktop.
VS Code Markdown Preview Stylesheet
/*
- 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