Skip to content

Instantly share code, notes, and snippets.

@gaurangrshah
Created May 10, 2021 21:56
Show Gist options
  • Save gaurangrshah/9d9b744561a851ee655e53786fe837ee to your computer and use it in GitHub Desktop.
Save gaurangrshah/9d9b744561a851ee655e53786fe837ee to your computer and use it in GitHub Desktop.
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