스벨트킷에서 daisyUI 테마를 이용해 Dark mode를 적용해 보자! 1. 테마 변경을 위해 theme-change 설치 npm install theme-change 2. 원하는 daisyUI 테마 선택 daisyUI themes — Tailwind CSS Components ( version 4 update is here ) How to use daisyUI themes? daisyui.com - 다크 테마 "dim" / 라이트 테마 "pastel" 선택 3. tailwind.config.cjs 파일 수정 /** @type {import('tailwindcss').Config} */ module.exports = { content: ['./src/**/*.{html,js,svelte,ts}'], ..