Created
August 27, 2019 17:28
-
-
Save indreklasn/9d54c6d25d633c363caf3ee88f2f2b49 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
:root { | |
--background-color: rgb(40, 44, 53); | |
--text-color: rgb(240, 240, 240); | |
} | |
.icon { | |
filter: invert(100%); | |
} | |
/* If no dark mode user agent stylesheet exists, emulate it */ | |
select, | |
input, | |
button, | |
option { | |
color: var(--text-color); | |
background-color: var(--background-color); | |
border-width: 1px; | |
border-radius: 1px; | |
} | |
/* Else, use the user agent stylesheet */ | |
@media (prefers-color-scheme: dark) { | |
select, | |
input, | |
button, | |
option { | |
color: unset; | |
background-color: unset; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment