Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

tailwind.config.js 1.0KB

12345678910111213141516171819202122232425262728
  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. platinum: '#E8E9EB',
  18. moonlight: '#F6F5F3',
  19. 'translucent': {
  20. light: 'rgba(255, 255, 255, 0.5)',
  21. DEFAULT: 'rgba(255, 255, 255, 0.5)',
  22. dark: 'rgba(25, 25, 25, 0.5)',
  23. },
  24. },
  25. }
  26. }
  27. }