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.
 
 
 
 
 
 

21 lines
458 B

  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. darkMode: false,
  4. content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
  5. theme: {
  6. extend: {
  7. keyframes: {
  8. 'rainbow-scroll': {
  9. '0%': { backgroundPosition: '0% 50%' },
  10. '100%': { backgroundPosition: '200% 50%' },
  11. },
  12. },
  13. animation: {
  14. 'rainbow-scroll': 'rainbow-scroll .25s linear infinite',
  15. },
  16. },
  17. },
  18. plugins: [],
  19. }