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 881B

123456789101112131415161718192021222324
  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/livewire/company/**/*.blade.php',
  8. './resources/views/components/**/*.blade.php',
  9. './vendor/filament/**/*.blade.php',
  10. './vendor/andrewdwallo/filament-companies/resources/views/**/*.blade.php',
  11. './vendor/andrewdwallo/filament-selectify/resources/views/**/*.blade.php',
  12. './resources/views/vendor/**/*.blade.php',
  13. './vendor/bezhansalleh/filament-panel-switch/resources/views/panel-switch-menu.blade.php',
  14. ],
  15. theme: {
  16. extend: {
  17. colors: {
  18. white: '#F3F4F6',
  19. platinum: '#E8E9EB',
  20. },
  21. }
  22. }
  23. }