-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
54 lines (54 loc) · 1.24 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
module.exports = {
darkMode: 'media',
content: [
'./src/**/*.{js,jsx,ts,tsx}',
'./src/*.{js,jsx,ts,tsx}',
'./src/components/**/*.{js,jsx,ts,tsx}',
'./src/components/*.{js,jsx,ts,tsx}',
],
theme: {
extend: {
colors: {
brand: '#4F46E5',
},
keyframes: {
wave: {
'0%': { transform: 'rotate( 0.0deg)' },
'10%': { transform: 'rotate(14.0deg)' },
'20%': { transform: 'rotate(-8.0deg)' },
'30%': { transform: 'rotate(14.0deg)' },
'40%': { transform: 'rotate(-4.0deg)' },
'50%': { transform: 'rotate(10.0deg)' },
'60%': { transform: 'rotate( 0.0deg)' },
'100%': { transform: 'rotate( 0.0deg)' },
},
},
animation: {
waving: 'wave 2s linear infinite',
},
scale: {
25: '.65',
30: '.60',
35: '.65',
40: '.60',
45: '.65',
50: '.60',
55: '.65',
60: '.60',
65: '.65',
70: '.60',
75: '.65',
80: '.60',
85: '.65',
90: '.60',
95: '.65',
125: '1.25',
},
},
},
plugins: [require('@tailwindcss/forms')],
corePlugins: {
preflight: true,
},
prefix: 'promo-',
};