-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
117 lines (112 loc) · 4.65 KB
/
Copy pathtailwind.config.js
File metadata and controls
117 lines (112 loc) · 4.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
// Primary Colors
'primary-turquoise': '#4ECDC4',
'primary-teal': '#2C7A7B',
'primary-cyan': '#67E8F9',
// Secondary Colors
'secondary-coral': '#FF6B9D',
'secondary-pink': '#F687B3',
'secondary-rose': '#FB7185',
// Accent Colors
'accent-orange': '#FFA07A',
'accent-deep-orange': '#FF6347',
'accent-peach': '#FFDAB9',
// Highlight Colors
'highlight-yellow': '#FFE66D',
'highlight-gold': '#FCD34D',
'highlight-amber': '#FBBF24',
// Neutral Colors
'neutral-dark': '#0F172A', // Slate 900
'neutral-card': '#1E293B', // Slate 800
'neutral-border': '#334155', // Slate 700
'neutral-gray': '#94A3B8', // Slate 400
'neutral-light-gray': '#CBD5E1', // Slate 300
'neutral-off-white': '#F1F5F9', // Slate 100
// Legacy support
background: '#0F172A',
surface: '#1E293B',
primary: {
DEFAULT: '#4ECDC4',
foreground: '#ffffff',
},
secondary: {
DEFAULT: '#FF6B9D',
foreground: '#ffffff',
},
accent: '#FFE66D',
},
fontFamily: {
sans: ['Open Sans', 'sans-serif'],
display: ['Poppins', 'Open Sans', 'sans-serif'],
},
boxShadow: {
'soft': '0 2px 8px rgba(0, 0, 0, 0.08)',
'card': '0 4px 12px rgba(0, 0, 0, 0.1)',
'turquoise': '0 8px 32px rgba(78, 205, 196, 0.3)',
'coral': '0 8px 32px rgba(255, 107, 157, 0.3)',
'orange': '0 8px 32px rgba(255, 160, 122, 0.3)',
'yellow': '0 8px 32px rgba(255, 230, 109, 0.3)',
'glow': '0 0 20px rgba(78, 205, 196, 0.5)',
},
animation: {
'fadeIn': 'fadeIn 0.5s ease-out',
'slideUp': 'slideUp 0.5s ease-out',
'slideInLeft': 'slideInLeft 0.5s ease-out',
'slideInRight': 'slideInRight 0.5s ease-out',
'scaleIn': 'scaleIn 0.3s ease-out',
'float': 'float 3s ease-in-out infinite',
'glow': 'glow 2s ease-in-out infinite',
'gradient': 'gradient 3s ease infinite',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideUp: {
'0%': { transform: 'translateY(20px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
slideInLeft: {
'0%': { transform: 'translateX(-20px)', opacity: '0' },
'100%': { transform: 'translateX(0)', opacity: '1' },
},
slideInRight: {
'0%': { transform: 'translateX(20px)', opacity: '0' },
'100%': { transform: 'translateX(0)', opacity: '1' },
},
scaleIn: {
'0%': { transform: 'scale(0.95)', opacity: '0' },
'100%': { transform: 'scale(1)', opacity: '1' },
},
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-10px)' },
},
glow: {
'0%, 100%': { boxShadow: '0 0 20px rgba(78, 205, 196, 0.5)' },
'50%': { boxShadow: '0 0 40px rgba(78, 205, 196, 0.8)' },
},
gradient: {
'0%, 100%': { backgroundPosition: '0% 50%' },
'50%': { backgroundPosition: '100% 50%' },
},
},
backgroundImage: {
'gradient-primary': 'linear-gradient(135deg, #4ECDC4 0%, #FF6B9D 100%)',
'gradient-secondary': 'linear-gradient(135deg, #FF6B9D 0%, #FFA07A 100%)',
'gradient-accent': 'linear-gradient(135deg, #FFE66D 0%, #FF6347 100%)',
'gradient-hero': 'linear-gradient(135deg, #4ECDC4 0%, #FF6B9D 50%, #FFA07A 100%)',
},
},
},
plugins: [],
}