mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-21 22:53:35 -05:00
9 lines
185 B
TypeScript
9 lines
185 B
TypeScript
import { useColorMode } from "@chakra-ui/core";
|
|
import { theme } from "theme";
|
|
|
|
export const useMyTheme = () => {
|
|
const { colorMode } = useColorMode();
|
|
|
|
return theme[colorMode];
|
|
};
|