🌈Color Mode
Chakra UI에서 제공하는 Color Mode 설정 방법을 소개합니다.
// src/configs/theme/config.ts
import { ThemeConfig } from '@chakra-ui/react';
const config: ThemeConfig = {
initialColorMode: 'light',
useSystemColorMode: false,
};
export default config;const config: ThemeConfig = {
initialColorMode: 'system',
useSystemColorMode: true,
};const config: ThemeConfig = {
initialColorMode: 'system',
useSystemColorMode: false,
};Last updated