-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
56 lines (56 loc) · 1.54 KB
/
tailwind.config.js
File metadata and controls
56 lines (56 loc) · 1.54 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
48
49
50
51
52
53
54
55
56
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
primary: '#000000',
secondary: '#11141c',
},
fontFamily: {
playfair: ['"Playfair Display"', 'serif'],
inter: ['Inter', 'sans-serif'],
},
keyframes: {
fadeIn: {
'0%': { opacity: '0', transform: 'translateY(10px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
scaleIn: {
'0%': { transform: 'scale(0.9)', opacity: '0' },
'100%': { transform: 'scale(1)', opacity: '1' },
},
slideIn: {
'0%': { transform: 'translateX(-20px)', opacity: '0' },
'100%': { transform: 'translateX(0)', opacity: '1' },
},
'wave-pulse': {
'0%, 100%': { opacity: 0.4 },
'50%': { opacity: 0.7 },
},
},
animation: {
fadeIn: 'fadeIn 0.5s ease-out',
scaleIn: 'scaleIn 0.6s ease-out',
slideIn: 'slideIn 0.4s ease-out',
'wave-pulse': 'wave-pulse 4s ease-in-out infinite',
},
transitionTimingFunction: {
'bounce-in': 'cubic-bezier(0.68, -0.55, 0.265, 1.55)',
'smooth-out': 'cubic-bezier(0.4, 0, 0.2, 1)',
},
backdropBlur: {
xs: '2px',
},
transitionDuration: {
'400': '400ms',
'600': '600ms',
'800': '800ms',
'1000': '1000ms',
},
},
},
plugins: [
require('tailwind-scrollbar'),
],
};