Last active
October 24, 2022 23:15
-
-
Save arjunkomath/e46ee9bc686586d12c937c551eb19e41 to your computer and use it in GitHub Desktop.
Dark mode styles for Ghost Solo theme
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
@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