-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
57 lines (57 loc) · 1.66 KB
/
Copy pathtailwind.config.js
File metadata and controls
57 lines (57 loc) · 1.66 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
mono: ['Fira Code', 'monospace'],
},
colors: {
accent: '#06b6d4',
accentLight: '#22d3ee',
accentDark: '#0891b2',
bgDark: '#020617',
surfaceDark: '#0f172a',
cardDark: 'rgba(30, 41, 59, 0.5)',
borderDark: 'rgba(56, 189, 248, 0.1)',
textPrimary: '#f8fafc',
textMuted: '#94a3b8',
},
animation: {
blob: 'blob 8s infinite ease-in-out',
fadeUp: 'fadeUp 0.6s ease forwards',
shimmer: 'shimmer 2s linear infinite',
float: 'float 4s ease-in-out infinite',
'spin-slow': 'spin 8s linear infinite',
},
keyframes: {
blob: {
'0%, 100%': { transform: 'translate(0, 0) scale(1)' },
'33%': { transform: 'translate(40px, -60px) scale(1.1)' },
'66%': { transform: 'translate(-30px, 30px) scale(0.9)' },
},
fadeUp: {
'0%': { opacity: '0', transform: 'translateY(30px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
shimmer: {
'0%': { backgroundPosition: '-200% 0' },
'100%': { backgroundPosition: '200% 0' },
},
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-14px)' },
},
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
},
},
},
plugins: [],
}