Created
February 3, 2026 06:02
-
-
Save nukopy/8a168d3b2f42c5f5af59d28afafacf8e to your computer and use it in GitHub Desktop.
CSS for VSCode / Cursor extension "Markdown Preview Enhanced"
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
| /* Please visit the URL below for more information: */ | |
| /* https://shd101wyy.github.io/markdown-preview-enhanced/#/customize-css */ | |
| .markdown-preview.markdown-preview { | |
| background-color: #f0f0f0; | |
| color: #000000; | |
| font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', sans-serif; | |
| font-size: 15px; | |
| } | |
| .markdown-preview.markdown-preview h1, | |
| .markdown-preview.markdown-preview h2, | |
| .markdown-preview.markdown-preview h3, | |
| .markdown-preview.markdown-preview h4, | |
| .markdown-preview.markdown-preview h5, | |
| .markdown-preview.markdown-preview h6, | |
| .markdown-preview.markdown-preview strong, | |
| .markdown-preview.markdown-preview b { | |
| color: #000000; | |
| } | |
| // divider under h2 | |
| .markdown-preview.markdown-preview h2 { | |
| border-bottom: 1px solid #000000; | |
| } | |
| // table title color | |
| .markdown-preview.markdown-preview table thead th { | |
| color: #000000; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment