-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
76 lines (76 loc) · 2 KB
/
tailwind.config.js
File metadata and controls
76 lines (76 loc) · 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
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ['DM Sans', 'sans-serif'],
display: ['Sora', 'sans-serif'],
},
colors: {
brand: {
ink: '#0f172a',
sunset: '#f97316',
gold: '#fbbf24',
teal: '#0f766e',
mist: '#f8fafc',
paper: '#fffdf7',
},
primary: {
50: '#fff0f5',
100: '#ffe4ec',
200: '#ffcce0',
300: '#ffa3cc',
400: '#ff69b4',
500: '#ff1493',
600: '#e6004d',
700: '#cc0044',
800: '#b3003b',
900: '#990033',
},
secondary: {
50: '#f0f4ff',
100: '#e0e7ff',
200: '#c7d2fe',
300: '#a5b4fc',
400: '#818cf8',
500: '#6366f1',
600: '#4f46e5',
700: '#4338ca',
800: '#3730a3',
900: '#312e81',
}
},
animation: {
'float': 'float 3s ease-in-out infinite',
'particle': 'particle 6s ease-in infinite',
'gradient': 'gradient 6s linear infinite',
'bounce-slow': 'bounce 1.3s infinite',
'shine': 'shine 3s linear infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0) scale(1)' },
'50%': { transform: 'translateY(-10px) scale(1.02)' },
},
particle: {
'0%': { transform: 'translateY(100vh) scale(0)', opacity: '0' },
'50%': { opacity: '0.8' },
'100%': { transform: 'translateY(-100vh) scale(1)', opacity: '0' },
},
gradient: {
'0%': { backgroundPosition: '0% center' },
'100%': { backgroundPosition: '-200% center' },
},
shine: {
'0%': { backgroundPosition: '0% 0%' },
'100%': { backgroundPosition: '200% 200%' },
}
}
},
},
plugins: [],
}