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

tailwind.config.js 1.2KB

1234567891011121314151617181920212223242526272829303132
  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/**/*.blade.php',
  7. './resources/views/livewire/company/**/*.blade.php',
  8. './resources/views/components/**/*.blade.php',
  9. './resources/views/vendor/**/*.blade.php',
  10. './vendor/filament/**/*.blade.php',
  11. './vendor/andrewdwallo/filament-companies/resources/views/**/*.blade.php',
  12. './vendor/andrewdwallo/filament-selectify/resources/views/**/*.blade.php',
  13. './vendor/awcodes/filament-table-repeater/resources/**/*.blade.php',
  14. './vendor/jaocero/radio-deck/resources/views/**/*.blade.php',
  15. './vendor/codewithdennis/filament-simple-alert/resources/**/*.blade.php',
  16. ],
  17. theme: {
  18. extend: {
  19. colors: {
  20. white: '#F3F4F6',
  21. platinum: '#E8E9EB',
  22. },
  23. maxWidth: {
  24. '8xl': '88rem',
  25. },
  26. transitionTimingFunction: {
  27. 'ease-smooth': 'cubic-bezier(0.08, 0.52, 0.52, 1)',
  28. }
  29. }
  30. }
  31. }