fmodf
b3b3b3aef7
Reviewed-on: narayana/conversations-classic-ios#1 Co-authored-by: fmodf <fmodf.ios@gmail.com> Co-committed-by: fmodf <fmodf.ios@gmail.com>
14 lines
698 B
Swift
14 lines
698 B
Swift
import Foundation
|
|
import SwiftUI
|
|
|
|
extension Font {
|
|
static let head1l = Font.system(size: 34, weight: .light, design: .rounded)
|
|
static let head1r = Font.system(size: 34, weight: .regular, design: .rounded)
|
|
static let head2 = Font.system(size: 20, weight: .regular, design: .rounded)
|
|
static let body1 = Font.system(size: 18, weight: .regular, design: .rounded)
|
|
static let body2 = Font.system(size: 16, weight: .regular, design: .rounded)
|
|
static let body3 = Font.system(size: 14, weight: .regular, design: .rounded)
|
|
static let sub1 = Font.system(size: 10, weight: .regular, design: .rounded)
|
|
static let sub2 = Font.system(size: 8, weight: .regular, design: .rounded)
|
|
}
|