use-color-scheme
Detects user system color scheme with window.matchMedia API
Import
Source
Docs
Package
Usage
use-color-scheme
hook returns system color scheme value i.e. either dark
or light
:
Your system color scheme is light
Hook uses use-media-query hook under the hood.
It relies on window.matchMedia()
API
and always returns light
if the API is not available (e.g. during server side rendering)
unless an initial value is provided in the first argument.