import type { Config } from 'tailwindcss' const config: Config = { content: ['./app/**/*.{ts,tsx}', './components/**/*.{ts,tsx}'], theme: { extend: { colors: { brand: { 50: '#eff6ff', 100: '#dbeafe', 500: '#3b82f6', 600: '#2563eb', 700: '#1d4ed8', }, }, fontFamily: { sans: ['Pretendard', 'Noto Sans KR', 'system-ui', 'sans-serif'], }, }, }, plugins: [], } export default config