From e04be692e2b5e553bff4ebbd42de62a5bff0ac3e Mon Sep 17 00:00:00 2001 From: Antoine Clausse Date: Wed, 13 May 2026 09:29:24 +0200 Subject: [PATCH] [web] Use content-secondary for plan card body text (#33466) Plan cards inherited neutral-60 (=neutral-60) for description and include-list text, which can fail WCAG contrast on the light card background. Switch to content-secondary (=neutral-70) per Vee's short-term recommendation; affects the free plan description, card include items (e.g. "Basic AI allowance") and the in-card group picker labels. Co-authored-by: Claude Opus 4.7 (1M context) GitOrigin-RevId: 42aff473a779b4b4f36b6c648d86097a79f820c8 --- services/web/frontend/stylesheets/pages/plans-2026.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/web/frontend/stylesheets/pages/plans-2026.scss b/services/web/frontend/stylesheets/pages/plans-2026.scss index 495bb95871..6b734d35ba 100644 --- a/services/web/frontend/stylesheets/pages/plans-2026.scss +++ b/services/web/frontend/stylesheets/pages/plans-2026.scss @@ -220,7 +220,7 @@ background-color: var(--bg-light-primary); border: 1px solid var(--neutral-30); border-radius: var(--border-radius-medium); - color: var(--neutral-60); + color: var(--content-secondary); display: grid; grid-row: span 4; grid-template-rows: subgrid; @@ -340,7 +340,7 @@ } .card-description { - color: var(--neutral-60); + color: var(--content-secondary); margin-block: 0; }