Skip to content

Commit dba02f3

Browse files
bloveclaude
andcommitted
fix(website): keep the signal yellow out of text, and drop a dead rule
Two defects I put in the plan, both caught in review. .field-report-num painted the 01-06 chapter markers in --color-signal at 10px bold. That is 1.78:1 on the surface it sits on; the ATC theme split the accent role precisely so this yellow stays fill-only. --color-accent is the interactive ink at 14.86:1. .pilot-eyebrow was kept on a false premise: I matched it as a substring of .pilot-eyebrow-spaced / -tight, which /pilot-to-prod does use -- but those are defined in pages.css. The bare class had no consumer left. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
1 parent fa97118 commit dba02f3

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

apps/website/src/styles/landing.css

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -350,11 +350,6 @@
350350
}
351351
}
352352

353-
/* .pilot-eyebrow is the last survivor of the retired PilotBlock rules; the
354-
* rest went with the TeamsBlock rewrite. */
355-
.pilot-eyebrow {
356-
margin-bottom: 16px;
357-
}
358353

359354
/* RecentArticles — components/landing/RecentArticles.tsx */
360355
.recent-articles-rail {
@@ -2176,7 +2171,10 @@ a.preflight-row:hover .preflight-challenge {
21762171
font-family: var(--font-mono);
21772172
font-size: 10px;
21782173
font-weight: 700;
2179-
color: var(--color-signal);
2174+
/* NOT --color-signal. The ATC theme split the accent role precisely to keep
2175+
* that yellow out of text: #FFAF00 is 1.78:1 on this surface, where these
2176+
* markers are 10px. --color-accent is the interactive ink, at 14.86:1. */
2177+
color: var(--color-accent);
21802178
}
21812179
.field-report-foot {
21822180
display: flex;

0 commit comments

Comments
 (0)