import type { Config } from "tailwindcss";

const config: Config = {
  content: ["./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}", "./lib/**/*.{ts,tsx}"],
  theme: {
    extend: {
      colors: {
        ink: "#1f1715",
        sand: "#f5ede3",
        ember: "#bf7446",
        olive: "#667559",
        cream: "#fff7ef",
        slate: "#2d3640",
        mist: "#edf2f7",
        copper: "#a65c35",
        ocean: "#2f6df6",
        espresso: "#211816"
      },
      boxShadow: {
        card: "0 28px 70px rgba(31, 18, 11, 0.10)",
        glow: "0 24px 55px rgba(166, 92, 53, 0.22)",
        inset: "inset 0 1px 0 rgba(255, 255, 255, 0.85)"
      },
      fontFamily: {
        display: ["Fraunces", "Iowan Old Style", "Palatino Linotype", "serif"],
        body: ["Sora", "Avenir Next", "Trebuchet MS", "Segoe UI", "sans-serif"]
      }
    }
  },
  plugins: []
};

export default config;
