import type { Config } from "tailwindcss"; export default { content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"], darkMode: "class", theme: { extend: { colors: { surface: { DEFAULT: "#18181b", // zinc-900 raised: "#27272a", // zinc-800 overlay: "#3f3f46", // zinc-700 }, // Staleness indicator colors "mc-fresh": "#22c55e", // green-500 -- updated < 1 day "mc-amber": "#f59e0b", // amber-500 -- updated 3-6 days "mc-urgent": "#ef4444", // red-500 -- updated 7+ days }, }, }, plugins: [], } satisfies Config;