-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
74 lines (73 loc) · 2.04 KB
/
Copy pathtailwind.config.js
File metadata and controls
74 lines (73 loc) · 2.04 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
spotify: {
green: '#1DB954',
black: '#191414',
dark: '#121212',
gray: '#282828',
light: '#B3B3B3',
},
wrapped: {
pink: '#FF6B9D',
purple: '#C577F2',
blue: '#4B9FFF',
orange: '#FF8C42',
yellow: '#FFD93D',
teal: '#4ECDC4',
red: '#FF4757',
}
},
fontFamily: {
display: ['Clash Display', 'sans-serif'],
body: ['Satoshi', 'sans-serif'],
},
animation: {
'gradient': 'gradient 8s linear infinite',
'float': 'float 6s ease-in-out infinite',
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'slide-up': 'slideUp 0.5s ease-out',
'slide-down': 'slideDown 0.5s ease-out',
'fade-in': 'fadeIn 0.5s ease-out',
'scale-in': 'scaleIn 0.3s ease-out',
'spin-slow': 'spin 8s linear infinite',
},
keyframes: {
gradient: {
'0%, 100%': { backgroundPosition: '0% 50%' },
'50%': { backgroundPosition: '100% 50%' },
},
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-20px)' },
},
slideUp: {
'0%': { transform: 'translateY(100px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
slideDown: {
'0%': { transform: 'translateY(-100px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
scaleIn: {
'0%': { transform: 'scale(0.9)', opacity: '0' },
'100%': { transform: 'scale(1)', opacity: '1' },
},
},
backgroundSize: {
'300%': '300%',
},
},
},
plugins: [],
}