@@ -11,115 +11,167 @@ import UIKit
1111public struct Typography {
1212
1313 // MARK: - Display
14- public static let Display_28_B = Style {
15- $0. font = DesignSystemFontFamily . Suit. bold. font ( size: 28 )
16- $0. kerning = . point( 0.42 )
17- }
18- public static let Display_26_B = Style {
19- $0. font = DesignSystemFontFamily . Suit. bold. font ( size: 26 )
20- $0. kerning = . point( 0.39 )
14+ public static var Display_28_B : Style {
15+ Style {
16+ $0. font = DesignSystemFontFamily . Suit. bold. font ( size: 28 )
17+ $0. kerning = . point( 0.42 )
18+ }
19+ }
20+ public static var Display_26_B : Style {
21+ Style {
22+ $0. font = DesignSystemFontFamily . Suit. bold. font ( size: 26 )
23+ $0. kerning = . point( 0.39 )
24+ }
2125 }
2226
2327 // MARK: - Heading
24- public static let Heading_24_B = Style {
25- $0. font = DesignSystemFontFamily . Suit. bold. font ( size: 24 )
26- $0. kerning = . point( 0.36 )
27- }
28- public static let Heading_24_SB = Style {
29- $0. font = DesignSystemFontFamily . Suit. semiBold. font ( size: 24 )
30- $0. kerning = . point( 0.36 )
31- }
32- public static let Heading_22_B = Style {
33- $0. font = DesignSystemFontFamily . Suit. bold. font ( size: 22 )
34- $0. kerning = . point( 0.33 )
35- }
36- public static let Heading_22_SB = Style {
37- $0. font = DesignSystemFontFamily . Suit. semiBold. font ( size: 22 )
38- $0. kerning = . point( 0.33 )
39- }
40- public static let Heading_20_B = Style {
41- $0. font = DesignSystemFontFamily . Suit. bold. font ( size: 20 )
42- $0. kerning = . point( 0.3 )
43- }
44- public static let Heading_20_SB = Style {
45- $0. font = DesignSystemFontFamily . Suit. semiBold. font ( size: 20 )
46- $0. kerning = . point( 0.3 )
47- }
48- public static let Heading_20_M = Style {
49- $0. font = DesignSystemFontFamily . Suit. medium. font ( size: 20 )
50- $0. kerning = . point( 0.3 )
51- }
52- public static let Heading_20_R = Style {
53- $0. font = DesignSystemFontFamily . Suit. regular. font ( size: 20 )
54- $0. kerning = . point( 0.3 )
28+ public static var Heading_24_B : Style {
29+ Style {
30+ $0. font = DesignSystemFontFamily . Suit. bold. font ( size: 24 )
31+ $0. kerning = . point( 0.36 )
32+ }
33+ }
34+ public static var Heading_24_SB : Style {
35+ Style {
36+ $0. font = DesignSystemFontFamily . Suit. semiBold. font ( size: 24 )
37+ $0. kerning = . point( 0.36 )
38+ }
39+ }
40+ public static var Heading_22_B : Style {
41+ Style {
42+ $0. font = DesignSystemFontFamily . Suit. bold. font ( size: 22 )
43+ $0. kerning = . point( 0.33 )
44+ }
45+ }
46+ public static var Heading_22_SB : Style {
47+ Style {
48+ $0. font = DesignSystemFontFamily . Suit. semiBold. font ( size: 22 )
49+ $0. kerning = . point( 0.33 )
50+ }
51+ }
52+ public static var Heading_20_B : Style {
53+ Style {
54+ $0. font = DesignSystemFontFamily . Suit. bold. font ( size: 20 )
55+ $0. kerning = . point( 0.3 )
56+ }
57+ }
58+ public static var Heading_20_SB : Style {
59+ Style {
60+ $0. font = DesignSystemFontFamily . Suit. semiBold. font ( size: 20 )
61+ $0. kerning = . point( 0.3 )
62+ }
63+ }
64+ public static var Heading_20_M : Style {
65+ Style {
66+ $0. font = DesignSystemFontFamily . Suit. medium. font ( size: 20 )
67+ $0. kerning = . point( 0.3 )
68+ }
69+ }
70+ public static var Heading_20_R : Style {
71+ Style {
72+ $0. font = DesignSystemFontFamily . Suit. regular. font ( size: 20 )
73+ $0. kerning = . point( 0.3 )
74+ }
5575 }
5676
5777 // MARK: - Body
58- public static let Body_18_B = Style {
59- $0. font = DesignSystemFontFamily . Suit. bold. font ( size: 18 )
60- $0. kerning = . point( 0.27 )
61- }
62- public static let Body_18_SB = Style {
63- $0. font = DesignSystemFontFamily . Suit. semiBold. font ( size: 18 )
64- $0. kerning = . point( 0.27 )
65- }
66- public static let Body_18_M = Style {
67- $0. font = DesignSystemFontFamily . Suit. medium. font ( size: 18 )
68- $0. kerning = . point( 0.27 )
69- }
70- public static let Body_18_R = Style {
71- $0. font = DesignSystemFontFamily . Suit. regular. font ( size: 18 )
72- $0. kerning = . point( 0.27 )
73- }
74- public static let Body_16_B = Style {
75- $0. font = DesignSystemFontFamily . Suit. bold. font ( size: 16 )
76- $0. kerning = . point( 0.24 )
77- }
78- public static let Body_16_SB = Style {
79- $0. font = DesignSystemFontFamily . Suit. semiBold. font ( size: 16 )
80- $0. kerning = . point( 0.24 )
81- }
82- public static let Body_16_M = Style {
83- $0. font = DesignSystemFontFamily . Suit. medium. font ( size: 16 )
84- $0. kerning = . point( 0.24 )
85- }
86- public static let Body_16_R = Style {
87- $0. font = DesignSystemFontFamily . Suit. regular. font ( size: 16 )
88- $0. kerning = . point( 0.24 )
89- }
90- public static let Body_14_B = Style {
91- $0. font = DesignSystemFontFamily . Suit. bold. font ( size: 14 )
92- $0. kerning = . point( 0.21 )
93- }
94- public static let Body_14_SB = Style {
95- $0. font = DesignSystemFontFamily . Suit. semiBold. font ( size: 14 )
96- $0. kerning = . point( 0.21 )
97- }
98- public static let Body_14_M = Style {
99- $0. font = DesignSystemFontFamily . Suit. medium. font ( size: 14 )
100- $0. kerning = . point( 0.21 )
101- }
102- public static let Body_14_R = Style {
103- $0. font = DesignSystemFontFamily . Suit. regular. font ( size: 14 )
104- $0. kerning = . point( 0.21 )
78+ public static var Body_18_B : Style {
79+ Style {
80+ $0. font = DesignSystemFontFamily . Suit. bold. font ( size: 18 )
81+ $0. kerning = . point( 0.27 )
82+ }
83+ }
84+ public static var Body_18_SB : Style {
85+ Style {
86+ $0. font = DesignSystemFontFamily . Suit. semiBold. font ( size: 18 )
87+ $0. kerning = . point( 0.27 )
88+ }
89+ }
90+ public static var Body_18_M : Style {
91+ Style {
92+ $0. font = DesignSystemFontFamily . Suit. medium. font ( size: 18 )
93+ $0. kerning = . point( 0.27 )
94+ }
95+ }
96+ public static var Body_18_R : Style {
97+ Style {
98+ $0. font = DesignSystemFontFamily . Suit. regular. font ( size: 18 )
99+ $0. kerning = . point( 0.27 )
100+ }
101+ }
102+ public static var Body_16_B : Style {
103+ Style {
104+ $0. font = DesignSystemFontFamily . Suit. bold. font ( size: 16 )
105+ $0. kerning = . point( 0.24 )
106+ }
107+ }
108+ public static var Body_16_SB : Style {
109+ Style {
110+ $0. font = DesignSystemFontFamily . Suit. semiBold. font ( size: 16 )
111+ $0. kerning = . point( 0.24 )
112+ }
113+ }
114+ public static var Body_16_M : Style {
115+ Style {
116+ $0. font = DesignSystemFontFamily . Suit. medium. font ( size: 16 )
117+ $0. kerning = . point( 0.24 )
118+ }
119+ }
120+ public static var Body_16_R : Style {
121+ Style {
122+ $0. font = DesignSystemFontFamily . Suit. regular. font ( size: 16 )
123+ $0. kerning = . point( 0.24 )
124+ }
125+ }
126+ public static var Body_14_B : Style {
127+ Style {
128+ $0. font = DesignSystemFontFamily . Suit. bold. font ( size: 14 )
129+ $0. kerning = . point( 0.21 )
130+ }
131+ }
132+ public static var Body_14_SB : Style {
133+ Style {
134+ $0. font = DesignSystemFontFamily . Suit. semiBold. font ( size: 14 )
135+ $0. kerning = . point( 0.21 )
136+ }
137+ }
138+ public static var Body_14_M : Style {
139+ Style {
140+ $0. font = DesignSystemFontFamily . Suit. medium. font ( size: 14 )
141+ $0. kerning = . point( 0.21 )
142+ }
143+ }
144+ public static var Body_14_R : Style {
145+ Style {
146+ $0. font = DesignSystemFontFamily . Suit. regular. font ( size: 14 )
147+ $0. kerning = . point( 0.21 )
148+ }
105149 }
106150
107151 // MARK: - Caption
108- public static let Caption_12_B = Style {
109- $0. font = DesignSystemFontFamily . Suit. bold. font ( size: 12 )
110- $0. kerning = . point( 0.18 )
111- }
112- public static let Caption_12_SB = Style {
113- $0. font = DesignSystemFontFamily . Suit. semiBold. font ( size: 12 )
114- $0. kerning = . point( 0.18 )
115- }
116- public static let Caption_12_M = Style {
117- $0. font = DesignSystemFontFamily . Suit. medium. font ( size: 12 )
118- $0. kerning = . point( 0.18 )
119- }
120- public static let Caption_12_R = Style {
121- $0. font = DesignSystemFontFamily . Suit. regular. font ( size: 12 )
122- $0. kerning = . point( 0.18 )
152+ public static var Caption_12_B : Style {
153+ Style {
154+ $0. font = DesignSystemFontFamily . Suit. bold. font ( size: 12 )
155+ $0. kerning = . point( 0.18 )
156+ }
157+ }
158+ public static var Caption_12_SB : Style {
159+ Style {
160+ $0. font = DesignSystemFontFamily . Suit. semiBold. font ( size: 12 )
161+ $0. kerning = . point( 0.18 )
162+ }
163+ }
164+ public static var Caption_12_M : Style {
165+ Style {
166+ $0. font = DesignSystemFontFamily . Suit. medium. font ( size: 12 )
167+ $0. kerning = . point( 0.18 )
168+ }
169+ }
170+ public static var Caption_12_R : Style {
171+ Style {
172+ $0. font = DesignSystemFontFamily . Suit. regular. font ( size: 12 )
173+ $0. kerning = . point( 0.18 )
174+ }
123175 }
124176}
125177
0 commit comments