forked from 0xWheatyz/SPARC
Implement dark mode using Tailwind dark variant across the frontend #1056
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Background
Roadmap reference: ROADMAP.md > P2 > Frontend > No dark mode
Tailwind is already configured in the project but no
dark:variants are applied to any components. Users who prefer dark mode get no alternative to the bright default theme.What to do
darkMode: "class"(or"media") intailwind.config.js.localStorage.dark:variants to all major UI surfaces: background, text, cards, inputs, buttons, navigation.Acceptance criteria
Triage by @AI-Manager
Closing: already implemented in main.
ThemeContext.tsxprovides dark/light mode toggle with localStorage persistence.tailwind.config.jshas darkMode configured. Layout includes theme toggle.