-
-
Save bcomnes/3236f7a94b71e0f9a08327f90bab702e to your computer and use it in GitHub Desktop.
Auto Dark mode for Humble New Tab Page (https://chrome.google.com/webstore/detail/mfgdmpfihlmdekaclngibpjhdebndhdj)
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
@media (prefers-color-scheme: dark) { | |
#main a { color: #bfdfff; } | |
body { background-color: #292a2d; } | |
#main a:hover { background-color: #000000; } | |
#main a:hover { color: #80ecff; } | |
#main a:hover { box-shadow: 0 0 7px #0080ff; } | |
#main a:hover { box-shadow: 0 0 7px #0080ff; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment