您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

tailwind.config.js 958B

12345678910111213141516171819202122232425
  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. './vendor/awcodes/filament-table-repeater/resources/**/*.blade.php',
  15. ],
  16. theme: {
  17. extend: {
  18. colors: {
  19. white: '#F3F4F6',
  20. platinum: '#E8E9EB',
  21. },
  22. }
  23. }
  24. }