-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
47 lines (47 loc) · 1.34 KB
/
tailwind.config.js
File metadata and controls
47 lines (47 loc) · 1.34 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
animation: {
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'float': 'float 6s ease-in-out infinite',
'glow': 'glow 8s ease-in-out infinite',
'glow-fast': 'glow 4s ease-in-out infinite',
'rotate': 'rotate 20s linear infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-15px)' },
},
glow: {
'0%, 100%': { opacity: 0.3 },
'50%': { opacity: 0.8 },
},
rotate: {
'0%': { transform: 'rotate(0deg)' },
'100%': { transform: 'rotate(360deg)' },
},
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
},
gridTemplateColumns: {
'16': 'repeat(16, minmax(0, 1fr))',
'24': 'repeat(24, minmax(0, 1fr))',
'32': 'repeat(32, minmax(0, 1fr))',
},
gridTemplateRows: {
'12': 'repeat(12, minmax(0, 1fr))',
'16': 'repeat(16, minmax(0, 1fr))',
},
},
},
plugins: [],
};