/** @type {import('tailwindcss').Config} */ export default { darkMode: "media", content: ["./index.html", "./src/**/*.{vue,ts}"], theme: { extend: { colors: { // ThoughtSync accent — a Keep-ish warm yellow. brand: { DEFAULT: "#F5C518", 600: "#D9A800", 700: "#B98F00", }, }, fontFamily: { sans: ["Inter", "system-ui", "-apple-system", "sans-serif"], }, }, }, plugins: [], };