Skip to content

Instantly share code, notes, and snippets.

@kickbase
Created March 16, 2026 23:21
Show Gist options
  • Select an option

  • Save kickbase/8e12ee302f342028ffe11e49082d5bbf to your computer and use it in GitHub Desktop.

Select an option

Save kickbase/8e12ee302f342028ffe11e49082d5bbf to your computer and use it in GitHub Desktop.
[ VSCode ] Apply light mode to Markdown previews only.
/* 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