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 }, }, }, }, plugins: [], } satisfies Config;