123456789101112131415161718192021222324252627 |
- import preset from '../../../../vendor/filament/filament/tailwind.config.preset'
-
- export default {
- presets: [preset],
- content: [
- './app/Filament/User/**/*.php',
- './resources/views/filament/user/**/*.blade.php',
- './resources/views/components/**/*.blade.php',
- './vendor/filament/**/*.blade.php',
- './vendor/andrewdwallo/filament-companies/resources/views/**/*.blade.php',
- './vendor/bezhansalleh/filament-panel-switch/resources/views/panel-switch-menu.blade.php',
- ],
- theme: {
- extend: {
- colors: {
- white: '#F3F4F6',
- platinum: '#E8E9EB',
- moonlight: '#F6F5F3',
- 'translucent': {
- light: 'rgba(255, 255, 255, 0.5)',
- DEFAULT: 'rgba(255, 255, 255, 0.5)',
- dark: 'rgba(25, 25, 25, 0.5)',
- },
- },
- }
- }
- }
|