-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (53 loc) · 1.64 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
const defaultTheme = require('tailwindcss/defaultTheme')
import { preset } from '@sethsharp/lumuix'
module.exports = {
presets: [preset],
content: [
'./node_modules/@sethsharp/lumuix/dist/*.js',
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
],
safelist: [
'grid-cols-1',
'grid-cols-2',
'grid-cols-3',
'grid-cols-4',
'grid-cols-5',
'grid-cols-6',
'md:grid-cols-3',
'md:grid-cols-4',
'md:grid-cols-5',
'md:grid-cols-6',
'max-w-sm',
'max-w-md',
'max-w-lg',
'max-w-xl',
'max-w-2xl',
],
theme: {
extend: {
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
mono: ['Roboto Mono', ...defaultTheme.fontFamily.mono],
},
keyframes: {
typing: {
'0%': { width: '0%' },
'100%': { width: '100%' },
},
blinking: {
'0%': { borderRightColor: 'transparent' },
'50%': { borderRightColor: 'white' },
'100%': { borderRightColor: 'transparent' },
},
},
animation: {
typing: 'typing 1s steps(30, end) forwards, blinking 1s infinite',
reveal: 'typing 0.7s steps(50, end) forwards',
},
},
},
plugins: [require('@tailwindcss/forms')],
}