-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
62 lines (62 loc) · 1.54 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
62
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/app/**/*.{js,ts,jsx,tsx}', './src/components/**/*.{js,ts,jsx,tsx}'],
future: {
hoverOnlyWhenSupported: true,
},
theme: {
extend: {
blur: {
'xs': '2px',
},
backgroundColor: {
'gray-1100': '#23252d',
'gray-1200': '#191a20',
'gray-1300': '#0c0e12',
},
screens: {
'3xl': '1600px',
'4xl': '1800px',
'5xl': '1920px',
'6xl': '2280px',
'7xl': '2560px',
// Max values set to hide album and duration column in the track table
'album': { 'max': '768px' },
'duration': { 'max': '440px' },
},
width: {
'88': '22rem',
'144': '36rem',
},
height: {
'88': '22rem',
'144': '36rem',
},
maxWidth: {
'8xl': '90rem',
},
keyframes: {
wiggle: {
'0%, 100%': { transform: 'rotate(-20deg)' },
'50%': { transform: 'rotate(20deg)' },
},
musicbar: {
'10%': { transform: 'scaleY(0.3)' },
'30%': { transform: 'scaleY(1)' },
'60%': { transform: 'scaleY(0.5)' },
'80%': { transform: 'scaleY(0.75)' },
'100': { transform: 'scaleY(0.6)' },
},
shimmer: {
'100%': {
transform: 'translateX(100%)',
},
},
},
animation: {
wiggle: 'wiggle 200ms ease-in-out',
musicbar: 'musicbar 2200ms ease infinite alternate',
},
},
},
}