Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/custom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ const resolveWeight = (weightOrSrc?: string | number) => {
if (weightOrSrc.includes('medium')) return 500
if (weightOrSrc.includes('semibold')) return 600
if (weightOrSrc.includes('demibold')) return 600
if (weightOrSrc.includes('bold')) return 700
if (weightOrSrc.includes('extrabold')) return 800
if (weightOrSrc.includes('ultrabold')) return 800
if (weightOrSrc.includes('bold')) return 700
if (weightOrSrc.includes('black')) return 900
if (weightOrSrc.includes('heavy')) return 900
return 400
Expand Down