fromis_9/frontend/tailwind.config.js
caadiq 91270c2c8b feat: Pretendard 폰트 적용 및 DB 스키마 완성
- Pretendard 폰트로 변경 (CDN)
- albums, tracks 테이블 생성 및 데이터 삽입
- 트랙별 작사/작곡/편곡/설명 정보 추가
- 모든 테이블 및 컬럼에 COMMENT 추가
2026-01-01 00:20:33 +09:00

23 lines
523 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
// 프로미스나인 팬덤 컬러
primary: {
DEFAULT: "#548360",
dark: "#456E50",
light: "#6A9A75",
},
// 보조 컬러
secondary: "#F5F5F5",
accent: "#FFD700",
},
fontFamily: {
sans: ["Pretendard", "Inter", "sans-serif"],
},
},
},
plugins: [],
};