fix(ui): render the quote View-project link in the accent color #466
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/MAPPS-405-text-primary-link"
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?
What
Change the quote "View project" link (quotes.rs:569) from
text-primarytotext-accent.Why
text-primaryis an undefined token (input.css has--color-primary-50..950but no bare--color-primary), so it emits no CSS and the link rendered as plain body text until hover.text-accentis the token every other inline link uses. UI audit (MAPPS-399) finding F2.Closes MAPPS-405.
quotes.rs:569 styled a real Router Link ("View project") as text-primary, but input.css defines only --color-primary-50..950 with no bare --color-primary, so the text-primary utility emits no CSS: the link inherited text-content and read as body copy until hover. Use text-accent, the token every other inline link uses. Found by the 2026-08-04 UI audit (MAPPS-399), finding F2. #MAPPS-405 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>