-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
59 lines (59 loc) · 1.4 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
light: '#3b82f6', // Lighter blue
dark: '#2563eb', // Deeper blue
},
dark: {
900: '#111827', // Dark background
800: '#1f2937', // Dark card background
700: '#374151', // Dark hover states
600: '#4b5563', // Dark secondary elements
},
light: {
900: '#f9fafb', // Light background
800: '#ffffff', // Light card background
700: '#f3f4f6', // Light hover states
600: '#e5e7eb', // Light secondary elements
}
}
},
boxShadow: {
glow: '0 0 10px rgba(37,99,235,0.2)',
'glow-hover': '0 0 15px rgba(37,99,235,0.3)',
},
keyframes: {
'fade-in-up': {
'0%': {
opacity: '0',
transform: 'translateY(10px)'
},
'100%': {
opacity: '1',
transform: 'translateY(0)'
},
},
'fade-in': {
'0%': {
opacity: '0',
},
'100%': {
opacity: '1',
},
},
},
animation: {
'fade-in-up': 'fade-in-up 2.5s ease-out forwards',
'fade-in': 'fade-in 2.5s ease-out forwards',
},
},
plugins: [],
}