Skip to content

Instantly share code, notes, and snippets.

@cyppan
Created December 6, 2025 11:28
Show Gist options
  • Select an option

  • Save cyppan/82d9e6b320f4be415d6634c1e492793c to your computer and use it in GitHub Desktop.

Select an option

Save cyppan/82d9e6b320f4be415d6634c1e492793c to your computer and use it in GitHub Desktop.
VSCode Typora-like Markdown style
/* style.css - Newsprint / Academic Reading */
body {
font-family: "Georgia", "Palatino Linotype", "Times New Roman", serif;
font-size: 18px; /* Slightly larger for reading */
line-height: 1.7;
color: #333;
background-color: #f9f9f5; /* The signature cream paper color */
max-width: 800px;
margin: 0 auto;
padding: 40px;
}
/* Override VSCode's default dark mode if you want Newsprint to ALWAYS be light/cream */
body.vscode-dark {
background-color: #f9f9f5 !important;
color: #333 !important;
}
/* Typography Details */
h1 { font-size: 2.2em; border-bottom: 2px solid #333; padding-bottom: 10px; margin-top: 40px;}
h2 { font-size: 1.7em; margin-top: 30px; }
p { margin-bottom: 1.5em; text-align: justify; }
/* Links - Understated */
a { color: #2a5f87; text-decoration: underline; }
/* Code - Minimalist */
pre {
background-color: #f0f0f0;
border: 1px solid #ddd;
padding: 15px;
border-radius: 4px;
box-shadow: 2px 2px 0px rgba(0,0,0,0.05);
}
code {
font-family: "Consolas", monospace;
background-color: #ececec;
padding: 2px 4px;
color: #d14; /* Vintage red code text */
}
/* Quotes */
blockquote {
font-style: italic;
border-left: 4px solid #d4d4ce;
padding-left: 20px;
color: #666;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment