From 06e5f523b34baf0a482074b1b6d1632186fc1269 Mon Sep 17 00:00:00 2001 From: sirineJ <112706079+sirineJ@users.noreply.github.com> Date: Tue, 15 Oct 2024 09:53:50 +0200 Subject: [PATCH] add new semibold font-weight token --- packages/design-tokens/themes/schema.ts | 1 + packages/design-tokens/themes/shared.ts | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/packages/design-tokens/themes/schema.ts b/packages/design-tokens/themes/schema.ts index 2329fcb55b..b0eb8e3f33 100644 --- a/packages/design-tokens/themes/schema.ts +++ b/packages/design-tokens/themes/schema.ts @@ -185,6 +185,7 @@ export const schema = [ { name: '--cui-font-stack-mono', type: 'fontFamily' }, /* Font weights */ { name: '--cui-font-weight-regular', type: 'fontWeight' }, + { name: '--cui-font-weight-semibold', type: 'fontWeight' }, { name: '--cui-font-weight-bold', type: 'fontWeight' }, /* Icon sizes */ { name: '--cui-icon-sizes-kilo', type: 'dimension' }, diff --git a/packages/design-tokens/themes/shared.ts b/packages/design-tokens/themes/shared.ts index 323f957355..f8aa26ff23 100644 --- a/packages/design-tokens/themes/shared.ts +++ b/packages/design-tokens/themes/shared.ts @@ -76,6 +76,11 @@ export const shared = [ value: '375', type: 'fontWeight', }, + { + name: '--cui-font-weight-semibold', + value: '550', + type: 'fontWeight', + }, { name: '--cui-font-weight-bold', value: '650',