Skip to content

useDarkMode ​

Hook using Dark mode.

Code demonstration ​

API ​

typescript
const [darkMode, setDarkMode] = useDarkMode()

Result ​

PropertyDescriptionType
darkModeIs it in dark modeComputedRef<boolean>
setDarkModeSet the dark mode, and the undefined is the following systemboolean | undefined

Source ​

Source · Document · Demo

Released under the MIT License.