mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-09 12:13:10 -05:00
10 lines
216 B
TypeScript
10 lines
216 B
TypeScript
import { useColorMode } from "@chakra-ui/core";
|
|
import { theme } from "theme";
|
|
|
|
// This hook can be deprecated
|
|
export const useMyTheme = () => {
|
|
const { colorMode } = useColorMode();
|
|
|
|
return theme[colorMode];
|
|
};
|