From 8c5889c3e84922c93c7a731039cfd9b170694ee9 Mon Sep 17 00:00:00 2001 From: Harpreet Singh Date: Wed, 29 Jul 2026 15:12:51 +0530 Subject: [PATCH 1/2] feat: update brand colors/fonts and trim getting-started model table Switch theme to the new blue palette (#5876F4/#7B93F7/#3D5BEB) with Inter body / Space Grotesk heading fonts, and drop the empty "Trust assumptions" column from the subname model comparison table on getting-started. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01Gn3SS5brQkK7Uf4s839WcH --- docs.json | 12 +++++++++--- getting-started.mdx | 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/docs.json b/docs.json index 0c7b33f..a1772c6 100644 --- a/docs.json +++ b/docs.json @@ -6,9 +6,15 @@ "metatags": {} }, "colors": { - "primary": "#15803D", - "light": "#07C983", - "dark": "#15803D" + "primary": "#5876F4", + "light": "#7B93F7", + "dark": "#3D5BEB" + }, + "fonts": { + "family": "Inter", + "heading": { + "family": "Space Grotesk" + } }, "favicon": "/favicon.ico", "integrations": { diff --git a/getting-started.mdx b/getting-started.mdx index 29acbd0..cb3fbda 100644 --- a/getting-started.mdx +++ b/getting-started.mdx @@ -10,7 +10,7 @@ icon: "hand-wave" **Choose where subnames live:** Subnames can be issued on Ethereum, on an L2 chain, or through an offchain service. All 3 work the same, but they differ in cost, control, and ownership. -| Model | Best for | Cost to issue | Ownership model | Trust assumptions | +| Model | Best for | Cost to issue | Ownership model | | --- | --- | --- | --- | | Offchain | High-volume onboarding and application-managed identities | No blockchain transaction | The parent-name operator manages records | | L2 (Base, Optimism) | Lower-cost NFT ownership on a supported L2 | L2 transaction and mint price | The minted subname is held by its owner | From ac9b78eeaf13b2931b596afd0109c819b52f796f Mon Sep 17 00:00:00 2001 From: Harpreet Singh Date: Wed, 29 Jul 2026 15:15:50 +0530 Subject: [PATCH 2/2] fix: darken primary color to pass WCAG AA contrast #5876F4 vs the light background was 3.95:1, below the 4.5:1 AA minimum the docs-quality workflow enforces. #4567F3 keeps the same hue/saturation, darkened just enough for a 4.68:1 ratio. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01Gn3SS5brQkK7Uf4s839WcH --- docs.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs.json b/docs.json index a1772c6..6a97025 100644 --- a/docs.json +++ b/docs.json @@ -6,7 +6,7 @@ "metatags": {} }, "colors": { - "primary": "#5876F4", + "primary": "#4567F3", "light": "#7B93F7", "dark": "#3D5BEB" },