-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
83 lines (81 loc) · 2.49 KB
/
tailwind.config.js
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import defaultTheme from 'tailwindcss/defaultTheme';
import scrollbarHide from 'tailwind-scrollbar-hide';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./src/**/*.{js,jsx,ts,tsx}', // 소스 파일 경로 설정
'./public/index.html',
'./design-system/**/*.{js,jsx,ts,tsx}', // custom-components 디렉토리
],
darkMode: ['class', '[data-mode="dark"]'],
theme: {
extend: {
spacing: {
13: '3.25rem',
15: '3.75rem',
},
width: {
17: '4.25rem',
18: '4.5rem',
19: '4.75rem',
31.5: '8rem',
33: '8.25rem',
90: '22.5rem',
},
height: {
17: '4.25rem',
18: '4.5rem',
19: '4.75rem',
},
fontFamily: {
sans: ['Apple SD Gothic Neo', 'sans-self'],
nexon: ['NEXON Lv1 Gothic OTF Bold', 'sans-serif'],
},
fontWeight: {
thin: 100, // Thin
extraLight: 200, // ExtraLight
light: 300, // Light
regular: 400, // Regular
medium: 500, // Medium
semibold: 600, // Semibold
bold: 700, // Bold
extrabold: 800, // ExtraBold
},
fontSize: {
10: '10px',
11: '11px',
12: '12px',
13: '13px',
14: '14px',
15: '15px',
16: '16px',
22: '22px',
26: '26px',
},
colors: {
main: '#FF5593', // 메인컬러
mainDark: '#FF3680', // 메인컬러(다크)
gradation: '#FF7577',
dropdown: 'rgba(255, 85, 147, 0.05)', // 드롭다운 선택배경
dashboardBg: '#FFFCFC', // 대시보드 배경
text: '#000000', // 텍스트, 로그인과 구매하기 버튼, 메인 검색창 구분선
placeholderText: '#A1A1A1', // 텍스트(플레이스홀더), 이벤트정보카드 라인, 라인(작성칸)
deDayBg: 'rgba(254, 183, 128, 0.60)', // 디데이(배경)
deDayText: '#F04444', // 디데이(글씨, 라인)
deDayBgLight: 'rgba(209, 208, 208, 0.60)', // 디데이(배경)
deDayTextDark: '#4F4F4F', // 디데이(글씨, 라인)
disAbledText: '#bebebe', // 비활성화 버튼 텍스트
gray1: '#F9F9F9', // 회색1
gray2: '#F5F5F5', // 회색2
gray3: '#EEEEEE', // 회색3
gray4: '#D9D9D9', // 회색4
},
},
screens: {
sm: '350px', // 작은 화면
md: '436px', // 중간 화면
lg: '512px', // 큰 화면
},
},
plugins: [require('tailwind-scrollbar-hide')],
};