import type { Config } from "tailwindcss";

export default {
  content: ["./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}"],
  theme: {
    extend: {
      colors: {
        cream: "#fbf7f2",
        blush: "#ead0cc",
        rose: "#9d6462",
        ink: "#2f2826",
        gold: "#b7935b",
      },
      fontFamily: { sans: ["var(--font-inter)"], serif: ["var(--font-playfair)"] },
      boxShadow: { soft: "0 24px 70px rgba(72, 46, 42, .10)" },
    },
  },
  plugins: [],
} satisfies Config;
