# Theming URL: /docs/getting-started/theming Vapor UI 테마 시스템을 설정하는 방법 # Vapor UI 테마 시스템 설정 가이드 ## 1. Next.js (App Router) 1. **패키지 설치** ```bash npm install @vapor-ui/core ``` 2. **테마 설정 파일 생성**\ (예시: `lib/theme.config.ts`) ```ts import { createThemeConfig } from '@vapor-ui/core'; export const themeConfig = createThemeConfig({ appearance: 'system', // 'light', 'dark', 'system' radius: 'full', scaling: 1.0, storageKey: 'my-next-app-theme', }); ``` 3. **Root layout.tsx에 적용** ```tsx import { themeConfig } from '@/lib/theme.config'; import { ThemeProvider, ThemeScript } from '@vapor-ui/core'; import '@vapor-ui/core/dist/styles.css'; export default function RootLayout({ children }) { return (