/** @type {import('tailwindcss').Config} */ export default { darkMode: "class", content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { // Mission Control color system (ADHD-friendly) mc: { fresh: "#22c55e", // Green - items < 1 day normal: "#a1a1aa", // Zinc - items 1-2 days amber: "#f59e0b", // Amber - items 3-6 days urgent: "#ef4444", // Red - items 7+ days }, // Dark mode background palette surface: { DEFAULT: "#18181b", // Main background raised: "#27272a", // Cards, dialogs overlay: "#3f3f46", // Overlays, menus }, }, animation: { pulse: "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite", }, }, }, plugins: [], };