fix(feedback): improve contrast of hero text (BUNYIP-45) #49
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/feedback-hero-bunyip-contrast"
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?
BUNYIP-45: Improve the contrast for some text
Problem
On the feedback page (
/feedback), the word "Bunyip" in the hero heading "Tell us what would make Bunyip better." was hard to read in every theme. It used a static gradient (text-gradient bg-gradient-to-r from-primary via-indigo-500 to-teal-400), which resolves to dark-green (#2f4e2e) at the start fading to light blue-green (#84afb6) at the end. Because those stops are theme-independent, one end always blends into the background: the dark-green start vanishes on the dark theme, and the light blue-green end vanishes on the light and high-contrast themes. The reporter attached dark, light, and high-contrast screenshots all showing the same low-contrast wordmark.Fix
Replace the gradient on that one span with the solid, theme-aware brand color the landing hero already uses:
text-bunyip-reed-900 dark:text-bunyip-reed-50. This keeps the brand emphasis on the wordmark while staying legible across dark, light, and high-contrast modes (reed-900 dark-green on the light/high-contrast white background, reed-50 near-white on the dark/dark-high-contrast background). Both utilities are already present in the compiledbunyip-web/assets/styles.css, so no asset rebuild was needed.Scope
One-line change in
bunyip-web/src/handlers/content.rs(feedback_form). No CSS, behavior, or layout changes.🤖 Generated with Claude Code