import type { Config } from "tailwindcss"; // Tailwind exists here ONLY to style the shared @otm/account-panel widgets // (SuggestionLightbulb — the bottom-right feedback chat-pop). The app's own UI // is handwritten CSS in globals.css, so preflight is off: Tailwind must not // reset anything, just supply the utility classes the shared components use. // The app is always dark, so dark: variants are pinned on via . export default { content: ["./src/**/*.{ts,tsx}", "./node_modules/@otm/account-panel/src/**/*.{ts,tsx}"], darkMode: "class", corePlugins: { preflight: false }, theme: { extend: {} }, plugins: [], } satisfies Config;