Skip to content

Instantly share code, notes, and snippets.

@elfacht
Last active January 5, 2022 10:42
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 elfacht/6fe33d82534d86b49e8322496ceb78e6 to your computer and use it in GitHub Desktop.
Save elfacht/6fe33d82534d86b49e8322496ceb78e6 to your computer and use it in GitHub Desktop.
User Preference Media Features in CSS
/*
@source
https://drafts.csswg.org/mediaqueries-5/#mf-user-preferences
https://css-tricks.com/weekly-platform-news-reduced-motion-cors-whitehouse-gov-popups-and-100vw/
*/
/* contrast */
@media (prefers-contrast: no-preference|less|more) {
/* … */
}
/* reduced motion */
@media (prefers-reduced-motion: no-preference|reduced) {
/* … */
}
/* reduced transparency */
@media (prefers-reduced-transparency: no-preference|reduced) {
/* … */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment