Created
January 8, 2023 08:59
-
-
Save nelson6e65/0639c41aa0849d1c10a7bb2455706856 to your computer and use it in GitHub Desktop.
This file contains 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
:root { | |
--color-canvas-default: #00000000; | |
} | |
.markdown-body { | |
background-color: var(--color-canvas-default); | |
} | |
@media (prefers-color-scheme: dark) { | |
.markdown-body { | |
--color-canvas-default: #00000000; | |
} | |
} | |
@media (prefers-color-scheme: light) { | |
.markdown-body { | |
--color-canvas-default: #ffffff00; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment