forked from gauthamys/hackelth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
29 lines (29 loc) · 925 Bytes
/
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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
animation:{
bounce: 'bounce 3s infinite',
spin: 'spin 2.5s infinite'
},
backgroundImage:{
main: "url(https://wallpapercave.com/wp/wp5502848.jpg)",
modal: "url(https://wallpapercave.com/wp/wp5288685.jpg)",
test:"url(https://wallpapercave.com/wp/wp7213376.jpg)",
light: "url(https://images.unsplash.com/photo-1579546929518-9e396f3cc809?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8MXx8fGVufDB8fHx8&w=1000&q=80)"
}
},
fontFamily: {
'sans': ['Helvetica', 'Arial', 'sans-serif'],
}
},
variants: {
extend: {
backgroundColor: ['group-focus','focus-within','active'],
scale: ['focus-within','active'],
transform: ['group-hover']
},
},
plugins: [],
}