【发布时间】:2022-08-23 11:22:33
【问题描述】:
这是我的主题文件。目前它只在明暗模式之间切换。我想知道我是否可以传递不同的颜色,还是我需要自己创建一个钩子来做到这一点?
import { extendTheme } from \'@chakra-ui/react\'
// 2. Add your color mode config
const config = {
initialColorMode: \'#C53030\',
useSystemColorMode: true,
}
// 3. extend the theme
const theme = extendTheme({ config })
export default theme
标签: javascript chakra-ui