Last active
January 4, 2023 16:13
-
-
Save ahmadajmi/fa6e5979484fbf404c20a4d15d755ea3 to your computer and use it in GitHub Desktop.
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
// Replace YOUR_LIGHT_COLOR_HERE with your light background. | |
// Replace YOUR_DARK_COLOR_HERE in two lines with your dark background. | |
<style> | |
:root { | |
--nav-background: YOUR_LIGHT_COLOR_HERE; | |
} | |
@media (prefers-color-scheme: dark) { | |
:root:not([data-user-color-scheme]) { | |
--nav-background: YOUR_DARK_COLOR_HERE; | |
} | |
} | |
[data-user-color-scheme='dark'] { | |
--nav-background: YOUR_DARK_COLOR_HERE; | |
} | |
.c-nav-wrap { | |
background: var(--nav-background); | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment