react-detect-theme

hook to detect user system theme

NPM JavaScript Style Guide

Install

npm install --save react-detect-theme

Usage

import * as React from "react";

import { useIsDark } from "react-detect-theme";

const Example = () => {
  const theme = useIsDark();
  return <div>{theme ? "dark" : "light"}</div>;
};

License

MIT © siddharthkul