/** @type {import('tailwindcss').Config} */ export default { content: ["./index.html", "./src/**/*.{ts,tsx}"], theme: { extend: { colors: { ink: "#0b1020", panel: "#121a33", panel2: "#172139", edge: "#27314f", accent: "#56d4c4", accent2: "#6c8cff", muted: "#93a0c0", }, fontFamily: { sans: ["Inter", "system-ui", "Segoe UI", "Roboto", "sans-serif"], }, }, }, plugins: [], };