-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
45 lines (45 loc) · 1.2 KB
/
tailwind.config.js
File metadata and controls
45 lines (45 loc) · 1.2 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
racing: {
red: '#DC2626',
'red-dark': '#B91C1C',
'red-light': '#FEE2E2',
black: '#111827',
'black-light': '#1F2937',
gold: '#F59E0B',
'gold-light': '#FEF3C7',
silver: '#9CA3AF',
'silver-light': '#F3F4F6'
}
},
fontFamily: {
'display': ['Inter', 'system-ui', 'sans-serif'],
'mono': ['JetBrains Mono', 'Courier New', 'monospace']
},
animation: {
'fade-in': 'fadeIn 0.5s ease-in-out',
'slide-up': 'slideUp 0.3s ease-out',
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'spin-slow': 'spin 8s linear infinite'
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' }
},
slideUp: {
'0%': { opacity: '0', transform: 'translateY(10px)' },
'100%': { opacity: '1', transform: 'translateY(0)' }
}
},
backdropBlur: {
'xs': '2px'
}
},
},
plugins: [],
};