-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dark mode request #156
Comments
100% |
One hacky option is to add something like this to the top of your md files:
|
some more detailed styling: body {
font-family: Helvetica, arial, sans-serif;
font-size: 14px;
line-height: 1.6;
padding-top: 10px;
padding-bottom: 10px;
background-color: #262626;
padding: 30px;
color: #CCC;
}
h1, h2, h3, h4, h5, h6 {
margin: 20px 0 10px;
padding: 0;
font-weight: bold;
-webkit-font-smoothing: antialiased;
cursor: text;
position: relative;
}
h1 {
font-size: 28px;
color: white;
}
h2 {
font-size: 24px;
border-bottom: 1px solid #cccccc;
color: white;
}
h3 {
font-size: 18px;
}
h4 {
font-size: 16px;
}
h5 {
font-size: 14px;
}
h6 {
color: #888888;
font-size: 14px;
}
p, blockquote, ul, ol, dl, li, table, pre {
margin: 15px 0;
} |
but what about the outer [light] margin? 😁 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think dark mode would be a really useful addition - I have difficulty viewing dark text on a white background.
Broadly speaking, what steps are needed to add a simple inverter toggle in the options?
The text was updated successfully, but these errors were encountered: