-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
53 lines (52 loc) · 1.57 KB
/
tailwind.config.js
File metadata and controls
53 lines (52 loc) · 1.57 KB
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
const defaultTheme = require('tailwindcss/defaultTheme')
const colors = require('tailwindcss/colors')
module.exports = {
mode: 'jit',
content: ['./resources/**/*.blade.php', './resources/**/*.js'],
purge: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./vendor/laravel/jetstream/**/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
'./vendor/spatie/laravel-support-bubble/config/**/*.php',
'./vendor/spatie/laravel-support-bubble/resources/views/**/*.blade.php',
],
theme: {
extend: {
keyframes: {
loop: {
'0%': { transform: 'translateX(0)' },
'100%': { transform: 'translateX(-50%)' },
},
wiggle: {
'0%, 100%': { transform: 'rotate(-3deg)' },
'50%': { transform: 'rotate(3deg)' },
},
},
animation: {
wiggle: 'wiggle 1s ease-in-out infinite',
loop: 'loop 8s linear infinite',
},
fontFamily: {
sans: ['Nunito', ...defaultTheme.fontFamily.sans],
},
colors: {
rose: colors.rose,
sky: colors.sky,
// teal: {
// 100: "#019DBB",
// 200: "#019DBB",
// 300: "#019DBB",
// 400: "#02abc9",
// 500: "#019DBB",
// 600: "#0088a0",
// 700: "#019DBB",
// 800: "#019DBB",
// 900: "#019DBB",
// },
},
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
}