sendou.ink/lib/useMyTheme.ts
2020-10-17 18:49:44 +03:00

9 lines
185 B
TypeScript

import { useColorMode } from "@chakra-ui/core";
import { theme } from "theme";
export const useMyTheme = () => {
const { colorMode } = useColorMode();
return theme[colorMode];
};