-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
66 lines (66 loc) · 1.35 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
55
56
57
58
59
60
61
62
63
64
65
66
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
animation: {
'pulse-slow': 'pulse 12s cubic-bezier(0.4, 0, 0.6, 1) infinite;',
fadeIn: "fadeIn 2s ease-in forwards",
wiggle: 'wiggle 10s ease-in-out infinite',
},
keyframes: {
'pulse-slow': {
'0%': {
opacity: 1
},
'100%': {
opacity: 1
},
'50%': {
opacity: .6
},
'40%': {
opacity: .6
},
'30%': {
opacity: .6
},
'80%': {
opacity: .9
}
},
fadeIn: {
"0%": { opacity: 0 },
"100%": { opacity: 1 }
},
wiggle: {
'0%, 100%': {
transform: 'rotate(-5deg)'
},
'50%': {
transform: 'rotate(5deg)'
},
}
},
variants: {
animation: ["motion-safe"]
},
flex: {
'embla': '0 0 100%'
},
colors: {
'qdark': '#040D16'
}, minHeight: {
'90vh': '90vh',
'50vh': '50vh',
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
}