-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 813 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (35 loc) · 813 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/index.{html, js}'],
theme: {
container: {
center: true,
},
extend: {
spacing: {
'14': '3.5rem',
'125px': '125px',
},
colors: {
'hoverspt': '#18D760',
'purple-main': '#2D46B9',
'green-main': '#1ED760'
},
backgroundImage: theme => ({
'spotify-theme': 'url("../assets/icon/bursts.svg")',
'spotify-theme-mobile': 'url("../assets/icon/bursts-mobile.svg")'
}),
backgroundSize: {
'175%': '175%',
'192%': '192%',
'195%': '195%',
'250%': '250%'
},
backgroundPosition: {
'banner': '46% 4%',
'banner-mobile': 'top 25% center'
},
},
},
plugins: [],
}