- Pretendard 폰트로 변경 (CDN) - albums, tracks 테이블 생성 및 데이터 삽입 - 트랙별 작사/작곡/편곡/설명 정보 추가 - 모든 테이블 및 컬럼에 COMMENT 추가
23 lines
523 B
JavaScript
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: [],
|
|
};
|