0.0.6 • Published 6 years ago
react-hook-dark-mode v0.0.6
$ npm install react-hook-dark-modeA React Hook to check whether the OS dark mode has been turned on.

import useIsDark from 'react-hook-dark-mode';
function App() {
const isDark = useIsDark();
return (
<div className="App">
<h1>Color scheme: {isDark ? "dark" : "light"}</h1>
</div>
);
}Try it out here!