-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
61 lines (60 loc) · 1.48 KB
/
tailwind.config.js
File metadata and controls
61 lines (60 loc) · 1.48 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
50
51
52
53
54
55
56
57
58
59
60
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
animation: {
'fade-in': 'fadeIn 0.5s ease-in-out',
'fade-out': 'fadeOut 0.5s ease-in-out',
shimmer: 'shimmer 1.3s linear infinite'
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
fadeOut: {
'0%': { opacity: '1' },
'100%': { opacity: '0' },
},
shimmer: {
'100%': {
transform: 'translateX(100%)'
}
},
},
boxShadow: {
'top': '0 0 10px rgba(0, 0, 0, 0.3)',
},
colors: {
primary: "#000000", // 메인 브랜드 색상
secondary: "#ffffff", // 배경에 사용하는 중립 색상
accent: "#F77830", // 포인트 색상
gray100: "#F1F1F1",
gray200: "#C5C5C5",
gray300: "#CBCAC7",
gray400: "#C7C7C7",
gray500: "#B2B2B2",
gray700: "#7F7F7F",
blue700: "#0000FF", // 링크
success: "#008541",
error: '#FF0E00',
naver: '#00DE5A',
transparentBlack: 'rgba(0, 0, 0, 0.5)'
},
fontFamily: {
sans: ["Noto Sans KR", "Arial", "sans-serif"],
roboto: ["Roboto", "sans-serif"]
}
},
},
corePlugins: {
aspectRatio: false,
},
plugins: [
require('@tailwindcss/aspect-ratio'),
],
}