You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
app/globals.css's @theme inline block defines --text-display: clamp(3.5rem, 14vw, 12.5rem) but nothing references it — grep for text-display / --text-display across app/, components/, lib/, content/ finds only the declaration. It's been dead since before #101 (it was --fs-display then; #101 just renamed it along with the rest of the scale for namespace coherence — see the review note). Tailwind v4 won't even emit a text-display utility because it's never used in a class.
Options
Delete it — one-line removal from the @theme inline block. Simplest; the scale loses one rung but no behaviour changes.
Background
app/globals.css's@theme inlineblock defines--text-display: clamp(3.5rem, 14vw, 12.5rem)but nothing references it —grepfortext-display/--text-displayacrossapp/,components/,lib/,content/finds only the declaration. It's been dead since before #101 (it was--fs-displaythen; #101 just renamed it along with the rest of the scale for namespace coherence — see the review note). Tailwind v4 won't even emit atext-displayutility because it's never used in a class.Options
@theme inlineblock. Simplest; the scale loses one rung but no behaviour changes.--text-h1that we want on the books, find/define the call site and usetext-display. (No such call site exists today, and chore(theme): migrate footer to Tailwind theme utilities #76/feat(blog): redesign the index and post pages as a "field-log" table #99/fix(blog): capitalize post headings, center body, tighten heading rhythm #100's redesigns didn't introduce one, so this seems unlikely.)Recommendation: option 1 unless someone has a near-term use for a display-size token.
Links