-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
44 lines (44 loc) · 897 Bytes
/
Copy pathtailwind.config.cjs
File metadata and controls
44 lines (44 loc) · 897 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
transitionProperty: {
'transform': 'transform',
},
transformOrigin: {
'center': 'center',
},
perspective: {
'1000': '1000px',
},
rotate: {
'x-5': 'rotateX(5deg)',
'y-5': 'rotateY(5deg)',
},
animation: {
'float': 'float 3s ease-in-out infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-10px)' },
}
},
colors: {
primary: '#880ED4',
'primary-dark': '#6b0ba6',
},
},
},
plugins: [],
safelist: [
'animate-float',
'perspective-1000',
'rotate-x-5',
'rotate-y-5',
],
}