Skip to content

Instantly share code, notes, and snippets.

@arjunkomath
Last active October 24, 2022 23:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arjunkomath/e46ee9bc686586d12c937c551eb19e41 to your computer and use it in GitHub Desktop.
Save arjunkomath/e46ee9bc686586d12c937c551eb19e41 to your computer and use it in GitHub Desktop.
Dark mode styles for Ghost Solo theme
@media (prefers-color-scheme: dark) {
:root {
--background-color: #1a1a1a;
--color-primary-text: #e3e3e3;
--color-secondary-text-dark: rgba(255, 255, 255, 0.65);
--color-secondary-text-light: rgba(0, 0, 0, 0.8);
--color-secondary-text: var(--color-secondary-text-dark);
--color-darker-gray: #e1e1e1;
--color-lighter-gray: #000;
--color-border: rgba(255, 255, 255, 0.08);
}
.has-background-about .gh-subscribe-input {
color: var(--color-secondary-text-dark);
background-color: #3e3e3e;
border: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment