summaryrefslogtreecommitdiff
path: root/lib/theme.tsx
blob: 2309bff5f947f055365b15a9415423994eb8f2c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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