-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (42 loc) · 1.43 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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
],
theme: {
extend: {
colors: {
primary: "rgb(16, 25, 136)",
secondary: "rgb(243, 19, 107)",
},
keyframes: {
shake: {
"0%": {
backgroundColor: "rgb(243, 19, 107)",
boxShadow: '0 0 5px rgb(130, 2, 99)',
transform: "rotate(-1deg)"
},
"50%": {
backgroundColor: "rgb(243, 19, 107)",
boxShadow: "0 0 20 px rgb(130, 2, 99)",
transform: "rotate(-2deg)"
},
"100%": {
backgroundColor: "rgb(243, 19, 107)",
boxShadow: "0 0 5 px rgb(130, 2, 99)",
transform: "rotate(-3deg)"
}
}
},
fontFamily: {
sans: ['Nunito', ...defaultTheme.fontFamily.sans],
},
animation: {
shake: "shake 1300ms infinite"
}
},
},
plugins: [require('@tailwindcss/forms')],
};