-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
62 lines (62 loc) · 1.98 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
keyframes: {
'fade-in': {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
'fade-in-up': {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
'float': {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
},
'pulse-glow': {
'0%, 100%': { opacity: '1', transform: 'scale(1)', filter: 'brightness(1)' },
'50%': { opacity: '0.8', transform: 'scale(1.05)', filter: 'brightness(1.2)' },
},
'shimmer': {
'0%': { backgroundPosition: '-200% 0' },
'100%': { backgroundPosition: '200% 0' },
},
'rotate-slow': {
'0%': { transform: 'rotate(0deg)' },
'100%': { transform: 'rotate(360deg)' },
},
'bounce-subtle': {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-5px)' },
}
},
animation: {
'fade-in': 'fade-in 1s ease-out',
'fade-in-up': 'fade-in-up 1s ease-out',
'fade-in-up-delay': 'fade-in-up 1s ease-out 0.5s forwards',
'float': 'float 3s ease-in-out infinite',
'pulse-glow': 'pulse-glow 2s ease-in-out infinite',
'shimmer': 'shimmer 1.5s infinite',
'rotate-slow': 'rotate-slow 20s linear infinite',
'bounce-subtle': 'bounce-subtle 2s ease-in-out infinite',
},
backdropBlur: {
xs: '2px',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
},
boxShadow: {
'glow': '0 0 15px rgba(255, 255, 255, 0.3)',
'glow-lg': '0 0 30px rgba(255, 255, 255, 0.5)',
},
},
},
plugins: [],
}