From 0e4a44f1f3b6460f4186aa51374702d747efa66f Mon Sep 17 00:00:00 2001 From: Nicholas Kissel Date: Mon, 9 Mar 2026 17:26:31 -0700 Subject: [PATCH] fix: increase base font-weight to 500 for Manrope readability Manrope at weight 400 is thinner than Open Sans was, making small body text hard to read. Bumping to 500 matches Rivet.dev's usage. Co-Authored-By: Claude Opus 4.6 --- frontend/packages/inspector/index.html | 1 + frontend/packages/website/src/styles/global.css | 1 + 2 files changed, 2 insertions(+) diff --git a/frontend/packages/inspector/index.html b/frontend/packages/inspector/index.html index f02e039..8a2080b 100644 --- a/frontend/packages/inspector/index.html +++ b/frontend/packages/inspector/index.html @@ -52,6 +52,7 @@ body { color: var(--text); font-family: 'Manrope', system-ui, sans-serif; + font-weight: 500; font-size: 13px; line-height: 1.5; -webkit-font-smoothing: antialiased; diff --git a/frontend/packages/website/src/styles/global.css b/frontend/packages/website/src/styles/global.css index 86f5549..0f2d8b6 100644 --- a/frontend/packages/website/src/styles/global.css +++ b/frontend/packages/website/src/styles/global.css @@ -36,6 +36,7 @@ body { @apply bg-black text-white antialiased; font-family: 'Manrope', system-ui, sans-serif; + font-weight: 500; } /* Text selection - matches rivet.dev */