tailwind.config.js 815 B

1234567891011121314151617181920212223242526272829303132
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. darkMode: 'class',
  4. content: [
  5. './src/**/*.{js,ts,jsx,tsx,mdx}',
  6. './components/**/*.{js,ts,jsx,tsx,mdx}',
  7. ],
  8. theme: {
  9. extend: {
  10. colors: {
  11. background: 'var(--background)',
  12. foreground: 'var(--foreground)',
  13. },
  14. animation: {
  15. 'spin-slow': 'spin 2s linear infinite',
  16. marquee: 'marquee 25s linear infinite',
  17. marquee2: 'marquee2 25s linear infinite',
  18. },
  19. keyframes: {
  20. marquee: {
  21. '0%': { transform: 'translateX(0%)' },
  22. '100%': { transform: 'translateX(-100%)' },
  23. },
  24. marquee2: {
  25. '0%': { transform: 'translateX(100%)' },
  26. '100%': { transform: 'translateX(0%)' },
  27. },
  28. },
  29. },
  30. },
  31. plugins: [],
  32. };