Files
30-seconds-of-code/snippets/prefersLightColorScheme.md
Angelos Chalaris 8a6b73bd0c Update covers
2023-02-16 22:24:28 +02:00

24 lines
528 B
Markdown

---
title: User prefers light color scheme
tags: browser
author: chalarangelo
cover: dark-mode
firstSeen: 2020-05-04T12:50:35+03:00
lastUpdated: 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
```