hook to detect user system theme
npm install --save react-detect-theme
import * as React from "react";
import { useIsDark } from "react-detect-theme";
const Example = () => {
const theme = useIsDark();
return <div>{theme ? "dark" : "light"}</div>;
};
MIT © siddharthkul