Skip to content

Instantly share code, notes, and snippets.

@popcornomnom
Last active March 21, 2020 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save popcornomnom/5288be0c003fedff3e9d43c332837dca to your computer and use it in GitHub Desktop.
Save popcornomnom/5288be0c003fedff3e9d43c332837dca to your computer and use it in GitHub Desktop.
//MARK: - Font Parts
public extension UIFont {
enum Family: String, CaseIterable {
case system = ".SFUIText" //".SFUI"
case inter = "Inter"
}
enum CustomWeight: String, CaseIterable {
case regular = "", medium, light, heavy, bold, semibold, black
}
enum Size: CGFloat, CaseIterable {
case h1 = 36, h2 = 28, h3 = 20
case bodyL = 17, bodyM = 15, bodyS = 13
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment