You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tailwind.config.js 740B

123456789101112131415161718192021
  1. import preset from '../../../../vendor/filament/filament/tailwind.config.preset'
  2. export default {
  3. presets: [preset],
  4. content: [
  5. './app/Filament/Company/**/*.php',
  6. './resources/views/filament/company/**/*.blade.php',
  7. './resources/views/components/company/**/*.blade.php',
  8. './vendor/filament/**/*.blade.php',
  9. './vendor/andrewdwallo/filament-companies/resources/views/**/*.blade.php',
  10. './vendor/andrewdwallo/filament-selectify/resources/views/**/*.blade.php',
  11. './vendor/bezhansalleh/filament-panel-switch/resources/views/panel-switch-menu.blade.php',
  12. ],
  13. theme: {
  14. extend: {
  15. colors: {
  16. white: '#F6F5F3',
  17. },
  18. }
  19. }
  20. }