import type { Config } from "tailwindcss";

const config: Config = {
  content: ["./src/**/*.{ts,tsx}"],
  theme: {
    extend: {
      colors: {
        brand: "#C1272D",
        accent: "#ED2027",
        ink: "#0E0E11",
        "text-2": "#6B7280",
        "text-3": "#9CA3AF",
        bg: "#F8F9FB",
        paper: "#FFFFFF",
        cream: "#FAF7F2",
        "tag-bg": "#FEE2E2",
        border: "#E5E7EB",
        success: "#4CAF50",
        error: "#ED2027",
        warning: "#FF9800",
        primary: "#C1272D",
        "primary-hover": "#ED2027",
        "primary-light": "#FEE2E2",
        secondary: "#0E0E11",
        surface: "#FFFFFF",
        "text-secondary": "#6B7280",
        soft: "#F8F9FB",
      },
    },
  },
  plugins: [],
};

export default config;
