Files
30-seconds-of-code/snippets/prefers-light-color-scheme.md
2023-04-28 22:29:23 +03:00

24 lines
508 B
Markdown

---
title: User prefers light color scheme
type: snippet
tags: [browser]
author: chalarangelo
cover: dark-mode
dateModified: 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.
```js
const prefersLightColorScheme = () =>
window &&
window.matchMedia &&
window.matchMedia('(prefers-color-scheme: light)').matches;
```
```js
prefersLightColorScheme(); // true
```