From 70c0664cb4219cf496afb484aae31b437fbc9244 Mon Sep 17 00:00:00 2001 From: Lionel Chamorro Date: Mon, 22 Jun 2026 11:22:46 -0300 Subject: [PATCH 1/2] fix(fonts): load Archivo 300 + italic axis to match Figma typography MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Google Fonts import only loaded wght 400/600/700 with no italic axis, so the Figma "Archivo Light Italic" captions (ArchiveProgress / ArchiveView / Search) were faux-synthesised. Load ital,wght 300/400/600/700 × normal+italic. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/styles/fonts.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/styles/fonts.css b/src/styles/fonts.css index e104a7a..f73f613 100644 --- a/src/styles/fonts.css +++ b/src/styles/fonts.css @@ -8,5 +8,9 @@ * import "@aymurai/ui/fonts.css"; * * Alternatively, self-host Archivo and skip this file. + * + * Weights/styles cover the full Figma usage: 300 (Light, used by the italic + * "light italic" captions in ArchiveProgress/ArchiveView/Search), 400, 600, + * 700 — each with an italic axis so emphasis is real, not faux-synthesised. */ -@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700&display=swap"); +@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap"); From dd9f90a89e7263f8e66ee8bb543595ff7c7f1aab Mon Sep 17 00:00:00 2001 From: Lionel Chamorro Date: Mon, 22 Jun 2026 11:26:37 -0300 Subject: [PATCH 2/2] chore: bump version to 0.3.1 Release 0.3.0 components + the Figma fidelity audit fixes as v0.3.1. Co-Authored-By: Claude Opus 4.8 (1M context) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 20ec80e..d9cd028 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aymurai/ui", - "version": "0.3.0", + "version": "0.3.1", "description": "AymurAI shared React component library, extracted from the Figma UI Library and authored with Panda CSS.", "license": "MIT", "type": "module",