Skip to content

Instantly share code, notes, and snippets.

@fitomad
Created October 26, 2018 07:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fitomad/f8de1f5e64488be89d31034edbfe1089 to your computer and use it in GitHub Desktop.
Save fitomad/f8de1f5e64488be89d31034edbfe1089 to your computer and use it in GitHub Desktop.
/*
Los valores aceptados son:
- dark
- light
- no-preference
*/
@media(prefers-color-scheme: dark)
{
body { background-color: #171717; color: #ffffff; }
a { color: #d62f2f }
a :visited { color: #d62f2f }
}
@media(prefers-color-scheme: light)
{
body { background-color: #ffffff; color: #121212; }
a { color: #ac2525 }
a :visited { color: #ac2525 }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment