-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
58 lines (58 loc) · 1.65 KB
/
tailwind.config.js
File metadata and controls
58 lines (58 loc) · 1.65 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
57
58
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
'inter': ['Inter', 'sans-serif'],
},
colors: {
accent: '#A60000',
secondary: '#FFD700',
'turtle-red': '#A60000',
'turtle-gold': '#FFD700',
gradients: {
turtle: 'linear-gradient(135deg, #7B0000, #A60000)',
}
},
fontSize: {
'hero': ['clamp(3rem, 8vw, 8rem)', { lineHeight: '0.9', letterSpacing: '-0.02em' }],
},
animation: {
'fade-in-up': 'fadeInUp 0.6s ease-out',
'pulse-glow': 'pulseGlow 2s ease-in-out infinite',
'reveal-text': 'revealText 1.5s ease-out',
'dots': 'dots 1.5s ease-in-out infinite',
'bounce-slow': 'bounce 2s infinite',
},
keyframes: {
fadeInUp: {
'0%': { opacity: '0', transform: 'translateY(30px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
pulseGlow: {
'0%, 100%': { boxShadow: '0 0 20px rgba(166, 0, 0, 0.3)' },
'50%': { boxShadow: '0 0 40px rgba(166, 0, 0, 0.6)' },
},
revealText: {
'0%': { transform: 'translateY(100%)' },
'100%': { transform: 'translateY(0)' },
},
dots: {
'0%, 20%': { transform: 'translateY(0)' },
'40%': { transform: 'translateY(-8px)' },
'60%': { transform: 'translateY(0)' },
'100%': { transform: 'translateY(0)' },
},
},
backdropBlur: {
xs: '2px',
},
},
},
plugins: [],
}