wing-ops/frontend/tailwind.config.js
htlee fb556fad9e chore: 프로젝트 초기 구성
- frontend: React 19 + Vite 7 + Leaflet + Tailwind + Zustand
- backend: Express + better-sqlite3 + TypeScript
- database: PostgreSQL 초기화 스크립트
- .gitignore: 대용량 참고자료(scat, 참고용) 및 바이너리 파일 제외
- .env.example: API 키 템플릿

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-27 11:06:21 +09:00

55 lines
1.1 KiB
JavaScript
Executable File

/** @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: [],
}