37 lines
861 B
JavaScript
37 lines
861 B
JavaScript
|
|
// const defaultTheme = require('tailwindcss/defaultTheme');
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
important: true,
|
||
|
|
|
||
|
|
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',
|
||
|
|
],
|
||
|
|
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
primary: '#003197'
|
||
|
|
},
|
||
|
|
// fontFamily: {
|
||
|
|
// sans: ['Nunito', ...defaultTheme.fontFamily.sans],
|
||
|
|
// },
|
||
|
|
},
|
||
|
|
},
|
||
|
|
|
||
|
|
variants: {
|
||
|
|
extend: {
|
||
|
|
opacity: ['disabled'],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
|
||
|
|
// plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
|
||
|
|
|
||
|
|
corePlugins: {
|
||
|
|
// preflight: false,
|
||
|
|
}
|
||
|
|
};
|