-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.ts
104 lines (101 loc) · 2.62 KB
/
tailwind.config.ts
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/stories/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontFamily: {
sans: ['Pretendard', 'sans-serif'],
},
backgroundOpacity: {
8: '0.08',
12: '0.12',
16: '0.16',
},
boxShadow: {
button: '0 0.2rem 1.2rem 0 rgba(0, 0, 0, 0.25)',
drop: '0 0 2.48rem 0 rgba(0, 0, 0, 0.25);',
chatbot: '0 0.4rem 1.2rem 0 rgba(0, 0, 0, 0.12)',
},
colors: {
neutral: {
100: '#030303',
90: '#1a1a1a',
80: '#333333',
70: '#4d4d4d',
60: '#4d4d4d',
50: '#808080',
40: '#999999',
30: '#b3b3b3',
20: '#cccccc',
10: '#e6e6e6',
5: '#f3f3f3',
},
primary: {
500: '#6100ff',
400: '#883eff',
300: '#a66fff',
200: '#c9a8ff',
100: '#e0ceff',
50: '#f2ebff',
},
system: {
warning: '#ff6d6d',
assist: '#6db0ff',
suggest: '#ffd542',
success: '#00c308',
},
'stroke-blue': '#99bdff',
'purple-light': '#faf8ff',
'purple-dark': '#e3e1e7',
'red-light': '#ffefef',
'gray-light': '#f1f1f1',
'gray-middle': '#c3c3c3',
'gray-dark': '#c2c2c2',
'gray-default': '#969696',
'gray-black': '#3F3F3F',
},
fontWeight: {
regular: '400',
medium: '500',
bold: '600',
},
keyframes: {
spread: {
'0%': {
width: '0',
height: '0',
},
'100%': {
width: '3856px',
height: '1134px',
},
},
move: {
'0%, 100%': { transform: 'translateX(0)' },
'50%': { transform: 'translateX(calc(100% + 250px))' },
},
spin360: {
'0%': { transform: 'rotate(0deg)' },
'100%': { transform: 'rotate(360deg)' },
},
rotateAround: {
'0%': { transform: 'rotate(0deg) translate(40vh)' },
'100%': { transform: 'rotate(360deg) translate(40vh)' },
},
},
animation: {
spread: 'spread 15s ease-in-out infinite',
'move-circle': 'move 2s ease-in-out infinite',
spin360: 'spin360 1s linear infinite',
'rotate-around': 'rotateAround 30s linear infinite',
},
},
},
plugins: [],
};
export default config;