Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created August 27, 2019 17:28
Show Gist options
  • Save indreklasn/9d54c6d25d633c363caf3ee88f2f2b49 to your computer and use it in GitHub Desktop.
Save indreklasn/9d54c6d25d633c363caf3ee88f2f2b49 to your computer and use it in GitHub Desktop.
: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