From 8bc25e126be89550593dda32176305ca0266031b Mon Sep 17 00:00:00 2001 From: policyengine-bot Date: Sat, 9 May 2026 18:37:46 +0000 Subject: [PATCH 1/2] Add text-5xl through text-9xl utilities to @theme MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Restores missing text size utilities (text-5xl through text-9xl) that were reset by --text-*: initial but not redefined. These are required by all 9 slide-deck repos and match Tailwind v4 defaults. Fixes #32 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/theme/tokens.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/theme/tokens.css b/src/theme/tokens.css index 1a43f8f..f28b0d7 100644 --- a/src/theme/tokens.css +++ b/src/theme/tokens.css @@ -314,6 +314,16 @@ --text-3xl--line-height: 36px; --text-4xl: 32px; --text-4xl--line-height: 40px; + --text-5xl: 3rem; + --text-5xl--line-height: 1; + --text-6xl: 3.75rem; + --text-6xl--line-height: 1; + --text-7xl: 4.5rem; + --text-7xl--line-height: 1; + --text-8xl: 6rem; + --text-8xl--line-height: 1; + --text-9xl: 8rem; + --text-9xl--line-height: 1; /* Semantic radius */ --radius-chip: 2px; From 084d78cc2d44b600d327303242d0594dbd728bcf Mon Sep 17 00:00:00 2001 From: Max Ghenis Date: Sat, 9 May 2026 20:16:42 -0400 Subject: [PATCH 2/2] Fix text size token source --- changelog.d/33.fixed.md | 1 + src/theme/tokens.ts | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 changelog.d/33.fixed.md diff --git a/changelog.d/33.fixed.md b/changelog.d/33.fixed.md new file mode 100644 index 0000000..073f6e8 --- /dev/null +++ b/changelog.d/33.fixed.md @@ -0,0 +1 @@ +Restore Tailwind text size utilities from `text-5xl` through `text-9xl`. diff --git a/src/theme/tokens.ts b/src/theme/tokens.ts index 92e0789..d82d817 100644 --- a/src/theme/tokens.ts +++ b/src/theme/tokens.ts @@ -467,6 +467,11 @@ export const typography = { "2xl": { size: "24px", lineHeight: "32px" }, "3xl": { size: "28px", lineHeight: "36px" }, "4xl": { size: "32px", lineHeight: "40px" }, + "5xl": { size: "3rem", lineHeight: "1" }, + "6xl": { size: "3.75rem", lineHeight: "1" }, + "7xl": { size: "4.5rem", lineHeight: "1" }, + "8xl": { size: "6rem", lineHeight: "1" }, + "9xl": { size: "8rem", lineHeight: "1" }, }, } as const;