-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
51 lines (48 loc) · 1.67 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
const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./resources/libraries/@protonemedia/inertiajs-tables-laravel-query-builder/**/*.{js,vue}',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
logo: ['Fira Sans',...defaultTheme.fontFamily.sans]
},
fontSize: {
xxs: ['0.6rem', {
lineHeight: '0.8rem',
}]
},
keyframes: {
shimmer: {
'100%': {
transform: 'translateX(100%)',
},
},
errorShake: {
'0%, 100%': { transform: 'translateX(0)' },
'25%': { transform: 'translateX(-5px)' },
'50%': { transform: 'translateX(5px)' },
'75%': { transform: 'translateX(-5px)' },
},
},
colors: {
retina: {
700: 'rgb(15, 22, 38)',
}
},
animation: {
skeleton: 'shimmer 1.3s ease-in-out infinite',
shimmer: 'shimmer 2.5s ease-in-out infinite',
error_shake: 'errorShake 0.3s ease-in-out',
}
},
},
plugins: [require('@tailwindcss/forms')],
};