Media queries
Media Types
allprintscreenspeech
Media Features
prefers-color-scheme
To detect if the user has requested the system use a light or dark color theme.
@media (prefers-color-scheme: dark) {
  .dark-scheme {
    background: #222;
    color: white;
  }
}
 
@media (prefers-color-scheme: light) {
  .light-scheme {
    background: white;
    color: black;
  }
}See also
prefers-reduced-motion
To detect if the user has requested that the system minimize the amount of non-essential motion it uses.
@media (prefers-reduced-motion: reduce) {
  /*  ...  */
}See also
- Card Flip 02: Reduced Motion Media Query - Una Kravets (opens in a new tab)
 - Accessible Animation - Designing in the Browser (opens in a new tab)