-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
54 lines (54 loc) · 1.41 KB
/
tailwind.config.js
File metadata and controls
54 lines (54 loc) · 1.41 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
heading: ['"Instrument Serif"', 'serif'],
},
colors: {
primary: {
DEFAULT: '#3b82f6', // blue-500
foreground: '#ffffff',
},
secondary: {
DEFAULT: '#64748b', // slate-500
foreground: '#ffffff',
},
destructive: {
DEFAULT: '#ef4444', // red-500
foreground: '#ffffff',
},
accent: {
DEFAULT: '#f1f5f9', // slate-100
foreground: '#0f172a', // slate-900
},
background: {
DEFAULT: '#ffffff',
},
ring: '#3b82f6', // blue-500
input: '#e2e8f0', // slate-200
},
animation: {
'fade-in': 'fadeIn 0.3s ease-out forwards',
'slide-in': 'slideIn 0.3s ease-out forwards',
'pulse-slow': 'pulse 3s infinite cubic-bezier(0.4, 0, 0.6, 1)',
},
keyframes: {
fadeIn: {
'0%': { opacity: 0, transform: 'translateY(10px)' },
'100%': { opacity: 1, transform: 'translateY(0)' },
},
slideIn: {
'0%': { opacity: 0, transform: 'translateX(20px)' },
'100%': { opacity: 1, transform: 'translateX(0)' },
},
},
},
},
plugins: [],
}