50 lines
1.3 KiB
JavaScript
50 lines
1.3 KiB
JavaScript
import defaultTheme from 'tailwindcss/defaultTheme';
|
|
import forms from '@tailwindcss/forms';
|
|
import daisyui from 'daisyui';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
|
|
'./storage/framework/views/*.php',
|
|
'./resources/views/**/*.blade.php',
|
|
'./resources/js/**/*.js',
|
|
'./app/Http/Livewire/**/*.php',
|
|
],
|
|
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
|
|
},
|
|
},
|
|
},
|
|
|
|
daisyui: {
|
|
themes: [
|
|
{
|
|
mytheme: {
|
|
"primary": "#ff6b6b",
|
|
"secondary": "#f0b90b",
|
|
"accent": "#36b37e",
|
|
"neutral": "#2d3748",
|
|
"base-100": "#ffffff",
|
|
"info": "#3b82f6",
|
|
"success": "#10b981",
|
|
"warning": "#f59e0b",
|
|
"error": "#ef4444",
|
|
},
|
|
},
|
|
],
|
|
darkTheme: "dark",
|
|
base: true,
|
|
styled: true,
|
|
utils: true,
|
|
prefix: "",
|
|
logs: false,
|
|
themeRoot: ":root",
|
|
},
|
|
|
|
plugins: [daisyui, forms],
|
|
};
|