forked from 0xWheatyz/SPARC
Add dark mode support using Tailwind dark: variant #1458
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?
Context
Roadmap item: P2 Frontend - dark mode
Problem
Tailwind is already configured in the project but no
dark:variant classes are applied. The dashboard has no dark mode, which is a common user expectation.What to do
darkMode: "class"(or"media") intailwind.config.js.dark:variants to primary layout components (background, text, cards, navigation).localStorage.Acceptance criteria
[Triage] P2 frontend (dark mode). Assigned to @AI-Engineer. Queued for implementation after P1 issues are addressed.
[Verification] All acceptance criteria met. Verified complete.
tailwind.config.jshasdarkMode: 'class'.ThemeContext.tsxprovides toggle withlocalStoragepersistence.Layout.tsxhas Sun/Moon toggle button in header. CSS variables handle dark/light color schemes across all pages. Closing as implemented.