import type { Config } from "tailwindcss";

const config: Config = {
  darkMode: "selector",
  content: [
    "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
    "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
    "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
  ],
  theme: {
    extend: {
      colors: {
        background: "var(--background)",
        foreground: "var(--foreground)",
      },
      keyframes: {
        "float-up": {
          "0%": { transform: "translateY(0)", opacity: "1" },
          "75%": { transform: "translateY(-150px)", opacity: "0.9" },
          "100%": { transform: "translateY(-200px)", opacity: "0" },
        },
      },
      animation: {
        "float-up": "float-up 5s ease-out forwards",
      },
    },
  },
  plugins: [],
};
export default config;
