We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b151ee5 commit 903790eCopy full SHA for 903790e
src/custom.ts
@@ -88,9 +88,9 @@ const resolveWeight = (weightOrSrc?: string | number) => {
88
if (weightOrSrc.includes('medium')) return 500
89
if (weightOrSrc.includes('semibold')) return 600
90
if (weightOrSrc.includes('demibold')) return 600
91
- if (weightOrSrc.includes('bold')) return 700
92
if (weightOrSrc.includes('extrabold')) return 800
93
if (weightOrSrc.includes('ultrabold')) return 800
+ if (weightOrSrc.includes('bold')) return 700
94
if (weightOrSrc.includes('black')) return 900
95
if (weightOrSrc.includes('heavy')) return 900
96
return 400
0 commit comments