Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-22 13:58:55 +01:00
parent 4af19165ec
commit 68073add76
12458 changed files with 12350765 additions and 2 deletions

View file

@ -0,0 +1,59 @@
class Fonts: IFonts {
var regular9 = UIFont.systemFont(ofSize: 9)
var regular10 = UIFont.systemFont(ofSize: 10)
var regular11 = UIFont.systemFont(ofSize: 11)
var regular12 = UIFont.systemFont(ofSize: 12)
var regular13 = UIFont.systemFont(ofSize: 13)
var regular14 = UIFont.systemFont(ofSize: 14)
var regular15 = UIFont.systemFont(ofSize: 15)
var regular16 = UIFont.systemFont(ofSize: 16)
var regular17 = UIFont.systemFont(ofSize: 17)
var regular18 = UIFont.systemFont(ofSize: 18)
var regular20 = UIFont.systemFont(ofSize: 20)
var regular24 = UIFont.systemFont(ofSize: 24)
var regular32 = UIFont.systemFont(ofSize: 32)
var regular52 = UIFont.systemFont(ofSize: 52)
var medium9 = UIFont.systemFont(ofSize: 9, weight:UIFont.Weight.medium)
var medium10 = UIFont.systemFont(ofSize: 10, weight:UIFont.Weight.medium)
var medium12 = UIFont.systemFont(ofSize: 12, weight:UIFont.Weight.medium)
var medium13 = UIFont.systemFont(ofSize: 13, weight:UIFont.Weight.medium)
var medium14 = UIFont.systemFont(ofSize: 14, weight:UIFont.Weight.medium)
var medium16 = UIFont.systemFont(ofSize: 16, weight:UIFont.Weight.medium)
var medium17 = UIFont.systemFont(ofSize: 17, weight:UIFont.Weight.medium)
var medium18 = UIFont.systemFont(ofSize: 18, weight:UIFont.Weight.medium)
var medium20 = UIFont.systemFont(ofSize: 20, weight:UIFont.Weight.medium)
var medium24 = UIFont.systemFont(ofSize: 24, weight:UIFont.Weight.medium)
var medium28 = UIFont.systemFont(ofSize: 28, weight:UIFont.Weight.medium)
var medium36 = UIFont.systemFont(ofSize: 36, weight:UIFont.Weight.medium)
var medium40 = UIFont.systemFont(ofSize: 40, weight:UIFont.Weight.medium)
var medium44 = UIFont.systemFont(ofSize: 44, weight:UIFont.Weight.medium)
var light10 = UIFont.systemFont(ofSize: 10, weight:UIFont.Weight.light)
var light12 = UIFont.systemFont(ofSize: 12, weight:UIFont.Weight.light)
var light16 = UIFont.systemFont(ofSize: 16, weight:UIFont.Weight.light)
var light17 = UIFont.systemFont(ofSize: 17, weight:UIFont.Weight.light)
var bold12 = UIFont.systemFont(ofSize: 12, weight:UIFont.Weight.bold)
var bold14 = UIFont.systemFont(ofSize: 14, weight:UIFont.Weight.bold)
var bold16 = UIFont.systemFont(ofSize: 16, weight:UIFont.Weight.bold)
var bold17 = UIFont.systemFont(ofSize: 17, weight:UIFont.Weight.bold)
var bold18 = UIFont.systemFont(ofSize: 18, weight:UIFont.Weight.bold)
var bold20 = UIFont.systemFont(ofSize: 20, weight:UIFont.Weight.bold)
var bold22 = UIFont.systemFont(ofSize: 22, weight:UIFont.Weight.bold)
var bold24 = UIFont.systemFont(ofSize: 24, weight:UIFont.Weight.bold)
var bold28 = UIFont.systemFont(ofSize: 28, weight:UIFont.Weight.bold)
var bold34 = UIFont.systemFont(ofSize: 34, weight:UIFont.Weight.bold)
var bold36 = UIFont.systemFont(ofSize: 36, weight:UIFont.Weight.bold)
var bold48 = UIFont.systemFont(ofSize: 48, weight:UIFont.Weight.bold)
var header = UIFont.preferredFont(forTextStyle: .headline)
var heavy17 = UIFont.systemFont(ofSize: 17, weight:UIFont.Weight.heavy)
var heavy20 = UIFont.systemFont(ofSize: 20, weight:UIFont.Weight.heavy)
var heavy32 = UIFont.systemFont(ofSize: 32, weight:UIFont.Weight.heavy)
var heavy38 = UIFont.systemFont(ofSize: 38, weight:UIFont.Weight.heavy)
var italic12 = UIFont.italicSystemFont(ofSize: 12)
var italic16 = UIFont.italicSystemFont(ofSize: 16)
var semibold12 = UIFont.systemFont(ofSize: 12, weight:UIFont.Weight.semibold)
var semibold14 = UIFont.systemFont(ofSize: 14, weight:UIFont.Weight.semibold)
var semibold15 = UIFont.systemFont(ofSize: 15, weight:UIFont.Weight.semibold)
var semibold16 = UIFont.systemFont(ofSize: 16, weight:UIFont.Weight.semibold)
var semibold18 = UIFont.systemFont(ofSize: 18, weight:UIFont.Weight.semibold)
var semibold20 = UIFont.systemFont(ofSize: 20, weight:UIFont.Weight.semibold)
}