Created
May 10, 2021 21:56
-
-
Save gaurangrshah/9d9b744561a851ee655e53786fe837ee to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useTheme, useColorMode } from "@chakra-ui/react"; | |
export function useColor() { | |
const theme = useTheme(); | |
const { colorMode } = useColorMode(); | |
const { mode } = theme.colors; | |
return { | |
mode: colorMode, | |
color: (colorName) => mode[colorMode][colorName], | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment