import type { Config } from "tailwindcss";

const config: Config = {
  content: [
    "./app/**/*.{ts,tsx}",
    "./components/**/*.{ts,tsx}",
    "./lib/**/*.{ts,tsx}",
  ],
  theme: {
    extend: {
      colors: {
        ink: "#0f172a",
        steel: "#334155",
        mist: "#e2e8f0",
        sky: "#4f9cf9",
        mint: "#22c55e",
        amber: "#f59e0b",
        coral: "#ef4444",
      },
      boxShadow: {
        panel: "0 22px 70px rgba(15, 23, 42, 0.14)",
      },
      fontFamily: {
        sans: ["'Space Grotesk'", "system-ui", "sans-serif"],
      },
    },
  },
  plugins: [],
};

export default config;
