Created
March 16, 2026 23:21
-
-
Save kickbase/8e12ee302f342028ffe11e49082d5bbf to your computer and use it in GitHub Desktop.
[ VSCode ] Apply light mode to Markdown previews only.
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
| /* Markdown プレビューを常にライト表示(エディタはダークのまま) */ | |
| body.vscode-dark, | |
| body.vscode-light { | |
| background-color: #ffffff !important; | |
| color: #24292e !important; | |
| } | |
| body.vscode-dark pre, | |
| body.vscode-dark code { | |
| background-color: #f6f8fa !important; | |
| color: #24292e !important; | |
| border: 1px solid #e1e4e8; | |
| } | |
| body.vscode-dark a { | |
| color: #0366d6 !important; | |
| } | |
| body.vscode-dark table th, | |
| body.vscode-dark table td { | |
| border-color: #e1e4e8 !important; | |
| } | |
| body.vscode-dark blockquote { | |
| border-left-color: #dfe2e5 !important; | |
| color: #57606a; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment