-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.ts
60 lines (59 loc) · 1.3 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
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
primary: '#4354F0',
secondary: '#D3E2F6',
gray: {
1: '#F7F8F9',
2: '#E9EBEE',
3: '#C5C8CE',
4: '#646F7C',
5: '#374553',
},
black: '#14191F',
cheer: {
left: '#FF0000',
right: '#003AFF',
},
},
keyframes: {
'dialog-overlay-show': {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
'dialog-overlay-hide': {
'0%': { opacity: '1' },
'100%': { opacity: '0' },
},
'menu-content-show': {
'0%': {
opacity: '0',
transform: 'translate(25%)',
},
'100%': {
opacity: '1',
transform: 'translate(0%)',
},
},
'menu-content-hide': {
'0%': {
opacity: '1',
transform: 'translate(0%)',
},
'100%': {
opacity: '0',
transform: 'translate(25%)',
},
},
},
},
},
plugins: [],
};
export default config;