Your IP : 216.73.216.124


Current Path : /var/www/html/dynaweb-starter/
Upload File :
Current File : /var/www/html/dynaweb-starter/tailwind.config.js

import colors from 'tailwindcss/colors' 
import forms from '@tailwindcss/forms'
import typography from '@tailwindcss/typography' 
 
export default {
    content: [
        // './resources/**/*.blade.php',
        // './vendor/filament/**/*.blade.php',
        './vendor/lara-zeus/core/resources/views/**/*.blade.php',
        './vendor/lara-zeus/sky/resources/views/filament/**/*.blade.php',
        './vendor/lara-zeus/sky/resources/views/themes/**/*.blade.php' 
    ],
    darkMode: 'class',
    theme: {
        extend: {
            colors: { 
                danger: colors.rose,
                primary: colors.blue,
                success: colors.green,
                warning: colors.yellow,
            }, 
        },
    },
    plugins: [
        forms, 
        typography, 
    ],
}