-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
49 lines (46 loc) · 1.5 KB
/
tailwind.config.js
File metadata and controls
49 lines (46 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
// 레이아웃 — 디자인·데스크톱 기준 1920px (1920 이하 w-full, 초과 시 중앙 정렬)
screens: {
desktop: '1024px', // 데스크톱 레이아웃 시작
},
maxWidth: {
'desktop-content': '1920px', // 콘텐츠 최대
'desktop-site': '1920px', // 화면 전체 최대
// 'mobile-view': '...', // 추후 — 특정 비율 모바일 뷰 너비
},
minWidth: {
desktop: '320px', // 데스크톱 개발 중 최소 너비 (추후 desktop/mobile 분리 예정)
// mobile: '...', // 추후 — desktop 미만 적응형 지원 너비
},
// 컬러
colors: {
// 배경
deepOceanNavy: '#344A64', // 메인 버튼 색상
waterlineBlue: '#5484B7', // 보조 버튼 색상
softAquaBlue: '#8BB4D2', // 중간 색상
mistSkyBlue: '#BBD3E0', // 하늘색 전경 색상
foamWhite: '#DAE5EA', // 화이트 대체 색상
// 텍스트
primary: '#344A64',
secondary: '#5484B7',
accent: '#8BB4D2',
surface: '#BBD3E0',
background: '#DAE5EA',
},
// 폰트
fontFamily: {
sans: ['Inter', 'sans-serif'],
manrope: ['Manrope', 'sans-serif'],
pretendard: ['Pretendard', 'sans-serif'],
},
},
},
plugins: [],
}