import type { Config } from "tailwindcss";

const config: Config = {
  content: [
    "./app/**/*.{ts,tsx}",
    "./components/**/*.{ts,tsx}",
    "./lib/**/*.{ts,tsx}",
  ],
  theme: {
    extend: {
      colors: {
        background: "#ffffff",
        foreground: "#10213f",
        primary: {
          DEFAULT: "#1769ff",
          foreground: "#ffffff",
          soft: "#eaf2ff",
          deep: "#0b4bd3",
        },
        ev: {
          DEFAULT: "#16a34a",
          foreground: "#ffffff",
          soft: "#e9f8ef",
          deep: "#0f7a36",
        },
        navy: {
          DEFAULT: "#10213f",
          muted: "#40516f",
          deep: "#07152d",
        },
        border: "#dbe5f4",
      },
      boxShadow: {
        card: "0 16px 40px rgba(16, 33, 63, 0.08)",
        soft: "0 10px 28px rgba(23, 105, 255, 0.10)",
      },
      borderRadius: {
        card: "1rem",
      },
    },
  },
  plugins: [],
};

export default config;
