/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { bg: { 0: '#0a0e1a', 1: '#0f1524', 2: '#121929', 3: '#1a2236', hover: '#1e2844', }, border: { DEFAULT: '#1e2a42', light: '#2a3a5c', }, text: { 1: '#e4e8f1', 2: '#8892a8', 3: '#5a6478', }, primary: { blue: '#3b82f6', cyan: '#06b6d4', purple: '#a855f7', }, status: { red: '#ef4444', orange: '#f97316', yellow: '#eab308', green: '#22c55e', }, boom: { DEFAULT: '#f59e0b', hover: '#fbbf24', }, }, fontFamily: { sans: ['Outfit', 'Noto Sans KR', 'sans-serif'], mono: ['JetBrains Mono', 'monospace'], korean: ['Noto Sans KR', 'sans-serif'], }, borderRadius: { sm: '6px', md: '10px', }, }, }, plugins: [], }