Last active
September 23, 2023 15:09
-
-
Save Phroneris/a7e765fa5ecd0e78fe5f5dbb6cbee72e to your computer and use it in GitHub Desktop.
VS CodeのMarkdownプレビュー(GitHub Markdown Preview)の自分用CSS
This file contains 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
@charset "UTF-8"; | |
.github-markdown-body { | |
font-family: | |
-apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, | |
"BIZ UDPGothic", /* ←追加 */ | |
sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; | |
} | |
.github-markdown-body :is(tt, code, samp, pre) { | |
font-family: | |
ui-monospace, | |
"SFMono-Regular", "SF Mono", Menlo, Consolas, "Liberation Mono", | |
"Migu 1M", /* ←追加 */ | |
monospace; | |
} |
This file contains 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
{ | |
"markdown.styles": [ | |
// GitHack | |
"https://gist.githack.com/Phroneris/a7e765fa5ecd0e78fe5f5dbb6cbee72e/raw/my-vscode-markdown.css", | |
// Statically | |
"https://cdn.statically.io/gist/Phroneris/a7e765fa5ecd0e78fe5f5dbb6cbee72e/raw/my-vscode-markdown.css", | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment