import defaultTheme from 'tailwindcss/defaultTheme'; import typography from '@tailwindcss/typography'; /** @type {import('tailwindcss').Config} */ export default { daisyui: { themes: ["business", "corporate"] }, content: [ './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', './vendor/laravel/jetstream/**/*.blade.php', './storage/framework/views/*.php', './resources/views/**/*.blade.php', "./vendor/robsontenorio/mary/src/View/Components/**/*.php" ], theme: { extend: { fontFamily: { sans: ['Figtree', ...defaultTheme.fontFamily.sans], }, }, }, darkMode: ['class', '[data-theme="business"]'], plugins: [ typography, require("daisyui") ], };