import type { Config } from "tailwindcss";

const config: Config = {
  content: ["./src/**/*.{ts,tsx}"],
  theme: {
    extend: {
      colors: {
        ink: "#102033",
        muted: "#667085",
        line: "#E5EAF0",
        fog: "#F6F9FC",
        blue: {
          brand: "#0B72B9",
          deep: "#074C7D",
          pale: "#E8F4FB",
        },
        teal: "#24B8A7",
        mint: "#E9FAF7",
        amber: "#F4A62A",
        danger: "#DC2626",
      },
      boxShadow: {
        panel: "0 24px 70px rgba(16, 32, 51, 0.12)",
        soft: "0 10px 30px rgba(16, 32, 51, 0.08)",
      },
    },
  },
  plugins: [],
};

export default config;
