Files
30-seconds-of-code/snippets/prefersLightColorScheme.md
Isabelle Viktoria Maciohsek 8bf67754ce Make expertise a field
2022-03-01 20:21:45 +02:00

514 B

title, tags, expertise, firstSeen, lastUpdated
title tags expertise firstSeen lastUpdated
User prefers light color scheme browser intermediate 2020-05-04T12:50:35+03:00 2020-10-22T20:24:04+03:00

Checks if the user color scheme preference is light.

  • Use Window.matchMedia() with the appropriate media query to check the user color scheme preference.
const prefersLightColorScheme = () =>
  window &&
  window.matchMedia &&
  window.matchMedia('(prefers-color-scheme: light)').matches;
prefersLightColorScheme(); // true