conversations-classic-ios/ConversationsClassic/Helpers/Typography.swift
fmodf b3b3b3aef7 mv-experiment (#1)
Reviewed-on: #1
Co-authored-by: fmodf <fmodf.ios@gmail.com>
Co-committed-by: fmodf <fmodf.ios@gmail.com>
2024-09-03 15:13:58 +00:00

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)
}