-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
53 lines (53 loc) · 1.51 KB
/
tailwind.config.js
File metadata and controls
53 lines (53 loc) · 1.51 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
brand: {
light: '#d1fae5', // emerald-100
DEFAULT: '#10b981', // emerald-500
dark: '#065f46', // emerald-900
},
accent: {
light: '#fef3c7', // amber-100
DEFAULT: '#f59e0b', // amber-500
dark: '#b45309', // amber-700
},
dark: {
DEFAULT: '#111827', // gray-900
lighter: '#1f2937', // gray-800
},
},
fontFamily: {
heading: ['Poppins', 'sans-serif'],
body: ['Inter', 'sans-serif'],
},
boxShadow: {
soft: '0 10px 25px rgba(0,0,0,0.05)',
glow: '0 0 15px rgba(16,185,129,0.4)',
},
animation: {
fadeIn: 'fadeIn 1s ease-in forwards',
fadeInUp: 'fadeInUp 1s ease-out forwards',
pulseSlow: 'pulse 3s infinite',
float: 'float 4s ease-in-out infinite',
},
keyframes: {
fadeIn: {
'0%': { opacity: 0 },
'100%': { opacity: 1 },
},
fadeInUp: {
'0%': { opacity: 0, transform: 'translateY(20px)' },
'100%': { opacity: 1, transform: 'translateY(0)' },
},
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-10px)' },
},
},
},
},
plugins: [], // Removed typography/forms/aspect-ratio plugins
};