import { extendTheme ,type ThemeConfig } from "@chakra-ui/react" import { mode } from '@chakra-ui/theme-tools' import type { StyleFunctionProps } from '@chakra-ui/styled-system' const config: ThemeConfig = { initialColorMode: 'light', useSystemColorMode: false, } // 3. extend the theme const theme = extendTheme({ config }) export default theme