--- title: prefersDarkColorScheme tags: browser,intermediate --- Checks if the user color scheme preference is `dark`. - Use `Window.matchMedia()` with the appropriate media query to check the user color scheme preference. ```js const prefersDarkColorScheme = () => window && window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches; ``` ```js prefersDarkColorScheme(); // true ```