From da0f50725f91dda0cbbef123ebf3686cb1426354 Mon Sep 17 00:00:00 2001 From: Stefanos Anagnostou Date: Tue, 30 Jan 2024 19:17:29 +0200 Subject: [PATCH] fix(clerk-js): Use common font weights (#2687) - Medium: 510 -> 500 - Semibold: 590 -> 600 --- .changeset/rotten-tigers-rescue.md | 2 ++ packages/clerk-js/src/ui/foundations/typography.ts | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 .changeset/rotten-tigers-rescue.md diff --git a/.changeset/rotten-tigers-rescue.md b/.changeset/rotten-tigers-rescue.md new file mode 100644 index 0000000000..a845151cc8 --- /dev/null +++ b/.changeset/rotten-tigers-rescue.md @@ -0,0 +1,2 @@ +--- +--- diff --git a/packages/clerk-js/src/ui/foundations/typography.ts b/packages/clerk-js/src/ui/foundations/typography.ts index 4a82a7db8d..fdf4f87e10 100644 --- a/packages/clerk-js/src/ui/foundations/typography.ts +++ b/packages/clerk-js/src/ui/foundations/typography.ts @@ -1,7 +1,7 @@ const fontWeights = Object.freeze({ normal: 400, - medium: 510, - semibold: 590, + medium: 500, + semibold: 600, bold: 700, } as const);