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

12345678910111213141516171819202122
  1. import preset from '../../../../vendor/filament/filament/tailwind.config.preset'
  2. export default {
  3. presets: [preset],
  4. content: [
  5. './app/Filament/User/**/*.php',
  6. './resources/views/**/*.blade.php',
  7. './resources/views/filament/user/**/*.blade.php',
  8. './vendor/filament/**/*.blade.php',
  9. './vendor/andrewdwallo/filament-companies/resources/views/**/*.blade.php',
  10. ],
  11. theme: {
  12. extend: {
  13. colors: {
  14. white: '#F6F5F3',
  15. platinum: '#E8E9EB',
  16. moonlight: '#F6F5F3',
  17. translucent: 'rgba(54, 54, 52, 0.06)',
  18. }
  19. }
  20. }
  21. }