-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
61 lines (61 loc) · 1.8 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
spotify: {
green: { DEFAULT: '#1db954', 100: '#1ed760' },
gray: {
DEFAULT: '#121212',
100: '#b3b3b3',
200: '#535353',
300: '#181818',
},
blue: {
DEFAULT: '#1E71D6',
100: '#1E51D6',
200: '#1E32D6',
},
},
},
backgroundImage: {
ellipse: 'radial-gradient(ellipse at top, var(--tw-gradient-stops))',
},
fontFamily: {
montserrat: ['"Montserrat"', 'sans-serif'],
},
dropShadow: {
border: '0px 0px 2px rgba(0, 0, 0, 0.6)',
'white-border': '0px 0px 2px rgba(255, 255, 255, 0.6)',
},
keyframes: {
bump: {
'0%': { transform: 'scale(1)' },
'10%': { transform: 'scale(0.8)' },
'30%': { transform: 'scale(1.1)' },
'50%': { transform: 'scale(1.3)' },
'100%': { transform: 'scale(1)' },
},
animateBars: {
'0%': { transform: 'scaleY(1)' },
'50%': { transform: 'scaleY(1.5)' },
'100%': { transform: 'scaleY(1)' },
},
},
animation: {
bump: 'bump 0.35s',
bars1: 'animateBars 0.5s infinite ease-in-out',
bars2: 'animateBars 0.5s infinite ease-in-out 0.05s',
bars3: 'animateBars 0.5s infinite ease-in-out 0.1s',
bars4: 'animateBars 0.5s infinite ease-in-out 0.2s',
bars5: 'animateBars 0.5s infinite ease-in-out 0.4s',
bars6: 'animateBars 0.5s infinite ease-in-out 0.8s',
},
boxShadow: {
inner_1: 'inset 2px 1px 4px rgba(0, 0, 0, 0.6)',
},
},
},
plugins: [],
};