You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

tailwind.config.cjs 614 B

2 years ago
2 years ago
12345678910111213141516171819202122232425262728
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
  4. theme: {
  5. extend: {
  6. // keyframes: {
  7. // toastAnimation: {
  8. // from: { opacity: '1' },
  9. // to: { opacity: '0' },
  10. // },
  11. // },
  12. // animation: {
  13. // toastAnimation: 'toastAnimation 0.5s ease-out',
  14. // },
  15. },
  16. },
  17. plugins: [require('daisyui')],
  18. daisyui: {
  19. styled: true,
  20. themes: ['winter', 'night'],
  21. base: true,
  22. utils: true,
  23. logs: true,
  24. rtl: false,
  25. prefix: '',
  26. darkTheme: 'night',
  27. },
  28. }