Description
The organizer filter pill buttons on the Discover page use inline Tailwind values bg-violet-600 and bg-gray-100 that do not match the project's design tokens. Closed issue #700 (FRONTEND: Centralise Colour Palette) established that all colours must use design tokens, not arbitrary Tailwind values.
Tasks
- Replace
bg-violet-600 with the correct brand accent token (e.g., bg-accent).
- Replace
bg-gray-100 / text-gray-700 with appropriate surface/ink tokens from globals.css.
- Ensure hover states also use design tokens.
Acceptance Criteria
- No raw
bg-violet-* or bg-gray-* classes remain on the organizer filter pills.
- Visual appearance matches the design system.
pnpm lint passes without errors.
Description
The organizer filter pill buttons on the Discover page use inline Tailwind values
bg-violet-600andbg-gray-100that do not match the project's design tokens. Closed issue #700 (FRONTEND: Centralise Colour Palette) established that all colours must use design tokens, not arbitrary Tailwind values.Tasks
bg-violet-600with the correct brand accent token (e.g.,bg-accent).bg-gray-100/text-gray-700with appropriate surface/ink tokens fromglobals.css.Acceptance Criteria
bg-violet-*orbg-gray-*classes remain on the organizer filter pills.pnpm lintpasses without errors.