tailwind.config.js 646 B

1234567891011121314151617181920212223242526
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: [
  4. "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
  5. "./src/ui/**/*.{js,ts,jsx,tsx,mdx}",
  6. "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
  7. ],
  8. theme: {
  9. extend: {
  10. colors: {
  11. background: "var(--background)",
  12. foreground: "var(--foreground)",
  13. },
  14. keyframes: {
  15. slideDown: {
  16. "0%": { transform: "translateY(-100%)", opacity: "0" },
  17. "100%": { transform: "translateY(1rem)", opacity: "1" },
  18. },
  19. },
  20. animation: {
  21. slideDown: "slideDown 0.3s ease-out forwards",
  22. },
  23. },
  24. },
  25. plugins: [],
  26. };