rename apple custom font files to match web names

This commit is contained in:
Satindar Dhillon 2022-03-21 13:24:11 -07:00
parent ebd7018a14
commit 62160b89c6
9 changed files with 8 additions and 8 deletions

View file

@ -67,13 +67,13 @@ extension Font {
}
private enum InterFont: String {
case black = "Inter-Black"
case extraBold = "Inter-ExtraBold"
case bold = "Inter-Bold"
case semiBold = "Inter-SemiBold"
case medium = "Inter-Medium"
case regular = "Inter-Regular"
case light = "Inter-Light"
case extraLight = "Inter-ExtraLight"
case black = "Inter-Black-900"
case extraBold = "Inter-ExtraBold-800"
case bold = "Inter-Bold-700"
case semiBold = "Inter-SemiBold-600"
case medium = "Inter-Medium-500"
case regular = "Inter-Regular-400"
case light = "Inter-Light-300"
case extraLight = "Inter-ExtraLight-200"
case thin = "Inter-Thin"
}