-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
86 lines (85 loc) · 2.41 KB
/
tailwind.config.js
File metadata and controls
86 lines (85 loc) · 2.41 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
const { scale } = require('framer-motion')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/features/**/*.{js,jsx,ts,tsx}',
'./src/components/**/*.{js,jsx,ts,tsx}',
'./src/app/**/*.{js,jsx,ts,tsx}',
'./src/shared/**/*.{js,jsx,ts,tsx}',
'./src/screens/**/*.{js,jsx,ts,tsx}',
],
theme: {
extend: {
colors: {
primary: '#E5CBA5',
secondary: {
brown: {
1: '#FFF9EE',
2: '#C9A070',
3: '#A57939',
4: '#6E4F36',
5: '#2E1C1B',
},
red: '#FB3636',
chat: '#FB6029',
},
gray: {
1: '#F3F3F3',
2: '#E7E7E7',
3: '#D9D9D9',
4: '#B5B5B5',
5: '#989898',
6: '#7C7C7C',
7: '#484848',
},
interaction: {
error: '#DF1D1D',
success: '#0073CB',
},
},
backgroundImage: {
'latte-gradient-1': 'linear-gradient(180deg, #E5CBA5 0%, #FFFFFF 68%)',
'latte-gradient-2': 'linear-gradient(90deg, #FFFFFF 0%, #E5CBA5 100%)',
'latte-gradient-3':
'linear-gradient(180deg, #C494A1 0%, #D4CD48 50%, #D4CD48 100%)',
'latte-gradient-4':
'conic-gradient(from 230deg at 57.45% 76.53%, #FFF 0.009085076089832deg, #FFF9EE 340deg)',
'latte-gradient-5':
'linear-gradient(90deg, #F14918 0%, #FA9009 100%)',
'skeleton': 'linear-gradient(to right, #e3e3e3, #efefef, #e3e3e3)',
},
backgroundSize: {
skeleton: '200% 100%',
},
minHeight: {
main: 'calc(100svh - 5rem)',
},
fontFamily: {
apple: ['AppleSDGothicNeo', 'Noto Sans KR', 'sans-serif'],
},
borderRadius: {
10: '0.625rem',
},
boxShadow: {
'border': '0 0 4px 0 rgba(0, 0, 0, 0.20)',
'bottom-line': '0 1px 0 0 #F3F3F3',
'top-line': '0 -1px 0 0 #F3F3F3',
},
keyframes: {
twinkle: {
'0%, 100%': { opacity: '0.5', transform: 'scale(1)' },
'50%': { opacity: '1', transform: 'scale(1.2)' },
},
shimmer: {
'0%': { backgroundPosition: '-200% 0' },
'100%': { backgroundPosition: '200% 0' },
},
},
animation: {
twinkle: 'twinkle 1.5s ease-in-out infinite ',
shimmer: 'shimmer 1.5s linear infinite',
},
},
},
plugins: [],
}