@times-design-system/theme-android 2.1.0 → 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/README.md +1 -1
  2. package/dist/TimesSpacing.kt +25 -25
  3. package/dist/TimesTypography.kt +198 -44
  4. package/dist/interfaces/TDSColors.kt +30 -16
  5. package/dist/interfaces/TDSSpacing.kt +24 -25
  6. package/dist/interfaces/TDSTimesRadioColors.kt +47 -0
  7. package/dist/interfaces/TDSTypography.kt +7 -2
  8. package/dist/palettes/DarkBusinessColors.kt +23 -25
  9. package/dist/palettes/DarkCommentColors.kt +23 -25
  10. package/dist/palettes/DarkCoreColors.kt +103 -88
  11. package/dist/palettes/DarkCultureColors.kt +23 -25
  12. package/dist/palettes/DarkHomeColors.kt +23 -25
  13. package/dist/palettes/DarkIrelandColors.kt +23 -25
  14. package/dist/palettes/DarkLifeAndStyleColors.kt +23 -25
  15. package/dist/palettes/DarkMagazineLuxxColors.kt +86 -0
  16. package/dist/palettes/DarkMagazineSundayTimesColors.kt +86 -0
  17. package/dist/palettes/DarkMagazineTimesColors.kt +86 -0
  18. package/dist/palettes/DarkMoneyColors.kt +23 -25
  19. package/dist/palettes/DarkObituariesColors.kt +23 -25
  20. package/dist/palettes/DarkPuzzlesColors.kt +23 -25
  21. package/dist/palettes/DarkSportColors.kt +23 -25
  22. package/dist/palettes/DarkTimesPlusColors.kt +86 -0
  23. package/dist/palettes/DarkTimesRadioColors.kt +47 -0
  24. package/dist/palettes/DarkTravelColors.kt +23 -25
  25. package/dist/palettes/DarkUkColors.kt +23 -25
  26. package/dist/palettes/DarkWorldColors.kt +23 -25
  27. package/dist/palettes/LightBusinessColors.kt +3 -7
  28. package/dist/palettes/LightCommentColors.kt +3 -7
  29. package/dist/palettes/LightCoreColors.kt +32 -17
  30. package/dist/palettes/LightCultureColors.kt +3 -7
  31. package/dist/palettes/LightHomeColors.kt +3 -7
  32. package/dist/palettes/LightIrelandColors.kt +3 -7
  33. package/dist/palettes/LightLifeAndStyleColors.kt +3 -7
  34. package/dist/palettes/LightMagazineLuxxColors.kt +57 -0
  35. package/dist/palettes/LightMagazineSundayTimesColors.kt +57 -0
  36. package/dist/palettes/LightMagazineTimesColors.kt +57 -0
  37. package/dist/palettes/LightMoneyColors.kt +3 -7
  38. package/dist/palettes/LightObituariesColors.kt +3 -7
  39. package/dist/palettes/LightPuzzlesColors.kt +3 -7
  40. package/dist/palettes/LightSportColors.kt +3 -7
  41. package/dist/palettes/LightTimesPlusColors.kt +57 -0
  42. package/dist/palettes/LightTimesRadioColors.kt +47 -0
  43. package/dist/palettes/LightTravelColors.kt +3 -7
  44. package/dist/palettes/LightUkColors.kt +3 -7
  45. package/dist/palettes/LightWorldColors.kt +3 -7
  46. package/package.json +3 -3
  47. package/dist/interfaces/TDSChannelsColors.kt +0 -321
  48. package/dist/interfaces/undefined.kt +0 -202
  49. package/dist/palettes/DarkBrandColors.kt +0 -166
  50. package/dist/palettes/DarkChannelsColors.kt +0 -321
  51. package/dist/palettes/DarkDataVisualisationColors.kt +0 -202
  52. package/dist/palettes/DarkMarketingColors.kt +0 -16
  53. package/dist/palettes/LightBrandColors.kt +0 -166
  54. package/dist/palettes/LightChannelsColors.kt +0 -321
  55. package/dist/palettes/LightDataVisualisationColors.kt +0 -202
  56. package/dist/palettes/LightMarketingColors.kt +0 -16
@@ -1,8 +1,8 @@
1
1
  package uk.co.thetimes.timesDesignSystem
2
-
3
2
  import androidx.compose.ui.text.style.TextDecoration
4
3
  import androidx.compose.ui.unit.TextUnit
5
4
  import androidx.compose.ui.unit.sp
5
+ import uk.co.thetimes.timesDesignSystem.interfaces.TDSTypography
6
6
 
7
7
  enum class TDSFontFamily {
8
8
  TimesModernLight,
@@ -11,680 +11,834 @@ enum class TDSFontFamily {
11
11
  TimesModernExtraBold,
12
12
  TimesDigitalW04Regular,
13
13
  TimesDigitalW04Bold,
14
- RobotoRegular,
15
- RobotoBold,
16
- RobotoMedium
14
+ TimesRobotoRegular,
15
+ TimesRobotoBold,
16
+ TimesRobotoMedium
17
17
  }
18
-
18
+
19
19
  data class TDSTextStyle(
20
20
  val fontFamily: TDSFontFamily,
21
21
  val fontSize: TextUnit,
22
22
  val lineHeight: TextUnit,
23
23
  val textDecoration: TextDecoration? = null
24
24
  )
25
-
25
+
26
26
  class TDSTypographyImpl : TDSTypography {
27
27
  override val brandHeadingFluidLight2xsmall = TDSTextStyle(
28
28
  fontFamily = TDSFontFamily.TimesModernLight,
29
29
  fontSize = 19.sp,
30
30
  lineHeight = 21.375.sp
31
31
  )
32
+
32
33
  override val brandHeadingFluidLightXsmall = TDSTextStyle(
33
34
  fontFamily = TDSFontFamily.TimesModernLight,
34
35
  fontSize = 20.sp,
35
36
  lineHeight = 22.5.sp
36
37
  )
38
+
37
39
  override val brandHeadingFluidLightSmall = TDSTextStyle(
38
40
  fontFamily = TDSFontFamily.TimesModernLight,
39
41
  fontSize = 24.sp,
40
42
  lineHeight = 27.sp
41
43
  )
44
+
42
45
  override val brandHeadingFluidLightMedium = TDSTextStyle(
43
46
  fontFamily = TDSFontFamily.TimesModernLight,
44
47
  fontSize = 28.sp,
45
48
  lineHeight = 31.5.sp
46
49
  )
50
+
47
51
  override val brandHeadingFluidLightLarge = TDSTextStyle(
48
52
  fontFamily = TDSFontFamily.TimesModernLight,
49
53
  fontSize = 32.sp,
50
54
  lineHeight = 36.sp
51
55
  )
56
+
52
57
  override val brandHeadingFluidLightXlarge = TDSTextStyle(
53
58
  fontFamily = TDSFontFamily.TimesModernLight,
54
59
  fontSize = 34.sp,
55
60
  lineHeight = 38.25.sp
56
61
  )
62
+
57
63
  override val brandHeadingFluidLight2xlarge = TDSTextStyle(
58
64
  fontFamily = TDSFontFamily.TimesModernLight,
59
65
  fontSize = 36.sp,
60
66
  lineHeight = 40.5.sp
61
67
  )
68
+
62
69
  override val brandHeadingFluidRegular2xsmall = TDSTextStyle(
63
70
  fontFamily = TDSFontFamily.TimesModernRegular,
64
71
  fontSize = 19.sp,
65
72
  lineHeight = 21.375.sp
66
73
  )
74
+
67
75
  override val brandHeadingFluidRegularXsmall = TDSTextStyle(
68
76
  fontFamily = TDSFontFamily.TimesModernRegular,
69
77
  fontSize = 20.sp,
70
78
  lineHeight = 22.5.sp
71
79
  )
80
+
72
81
  override val brandHeadingFluidRegularSmall = TDSTextStyle(
73
82
  fontFamily = TDSFontFamily.TimesModernRegular,
74
83
  fontSize = 24.sp,
75
84
  lineHeight = 27.sp
76
85
  )
86
+
77
87
  override val brandHeadingFluidRegularMedium = TDSTextStyle(
78
88
  fontFamily = TDSFontFamily.TimesModernRegular,
79
89
  fontSize = 28.sp,
80
90
  lineHeight = 31.5.sp
81
91
  )
92
+
82
93
  override val brandHeadingFluidRegularLarge = TDSTextStyle(
83
94
  fontFamily = TDSFontFamily.TimesModernRegular,
84
95
  fontSize = 32.sp,
85
96
  lineHeight = 36.sp
86
97
  )
98
+
87
99
  override val brandHeadingFluidRegularXlarge = TDSTextStyle(
88
100
  fontFamily = TDSFontFamily.TimesModernRegular,
89
101
  fontSize = 34.sp,
90
102
  lineHeight = 38.25.sp
91
103
  )
104
+
92
105
  override val brandHeadingFluidRegular2xlarge = TDSTextStyle(
93
106
  fontFamily = TDSFontFamily.TimesModernRegular,
94
107
  fontSize = 36.sp,
95
108
  lineHeight = 40.5.sp
96
109
  )
110
+
97
111
  override val brandHeadingFluidBold2xsmall = TDSTextStyle(
98
112
  fontFamily = TDSFontFamily.TimesModernBold,
99
113
  fontSize = 19.sp,
100
114
  lineHeight = 21.375.sp
101
115
  )
116
+
102
117
  override val brandHeadingFluidBoldXsmall = TDSTextStyle(
103
118
  fontFamily = TDSFontFamily.TimesModernBold,
104
119
  fontSize = 20.sp,
105
120
  lineHeight = 22.5.sp
106
121
  )
122
+
107
123
  override val brandHeadingFluidBoldSmall = TDSTextStyle(
108
124
  fontFamily = TDSFontFamily.TimesModernBold,
109
125
  fontSize = 24.sp,
110
126
  lineHeight = 27.sp
111
127
  )
128
+
112
129
  override val brandHeadingFluidBoldMedium = TDSTextStyle(
113
130
  fontFamily = TDSFontFamily.TimesModernBold,
114
131
  fontSize = 28.sp,
115
132
  lineHeight = 31.5.sp
116
133
  )
134
+
117
135
  override val brandHeadingFluidBoldLarge = TDSTextStyle(
118
136
  fontFamily = TDSFontFamily.TimesModernBold,
119
137
  fontSize = 32.sp,
120
138
  lineHeight = 36.sp
121
139
  )
140
+
122
141
  override val brandHeadingFluidBoldXlarge = TDSTextStyle(
123
142
  fontFamily = TDSFontFamily.TimesModernBold,
124
143
  fontSize = 34.sp,
125
144
  lineHeight = 38.25.sp
126
145
  )
146
+
127
147
  override val brandHeadingFluidBold2xlarge = TDSTextStyle(
128
148
  fontFamily = TDSFontFamily.TimesModernBold,
129
149
  fontSize = 36.sp,
130
150
  lineHeight = 40.5.sp
131
151
  )
152
+
132
153
  override val brandHeadingFluidBlack2xsmall = TDSTextStyle(
133
154
  fontFamily = TDSFontFamily.TimesModernExtraBold,
134
155
  fontSize = 19.sp,
135
156
  lineHeight = 21.375.sp
136
157
  )
158
+
137
159
  override val brandHeadingFluidBlackXsmall = TDSTextStyle(
138
160
  fontFamily = TDSFontFamily.TimesModernExtraBold,
139
161
  fontSize = 20.sp,
140
162
  lineHeight = 22.5.sp
141
163
  )
164
+
142
165
  override val brandHeadingFluidBlackSmall = TDSTextStyle(
143
166
  fontFamily = TDSFontFamily.TimesModernExtraBold,
144
167
  fontSize = 24.sp,
145
168
  lineHeight = 27.sp
146
169
  )
170
+
147
171
  override val brandHeadingFluidBlackMedium = TDSTextStyle(
148
172
  fontFamily = TDSFontFamily.TimesModernExtraBold,
149
173
  fontSize = 28.sp,
150
174
  lineHeight = 31.5.sp
151
175
  )
176
+
152
177
  override val brandHeadingFluidBlackLarge = TDSTextStyle(
153
178
  fontFamily = TDSFontFamily.TimesModernExtraBold,
154
179
  fontSize = 32.sp,
155
180
  lineHeight = 36.sp
156
181
  )
182
+
157
183
  override val brandHeadingFluidBlackXlarge = TDSTextStyle(
158
184
  fontFamily = TDSFontFamily.TimesModernExtraBold,
159
185
  fontSize = 34.sp,
160
186
  lineHeight = 38.25.sp
161
187
  )
188
+
162
189
  override val brandHeadingFluidBlack2xlarge = TDSTextStyle(
163
190
  fontFamily = TDSFontFamily.TimesModernExtraBold,
164
191
  fontSize = 36.sp,
165
192
  lineHeight = 40.5.sp
166
193
  )
194
+
167
195
  override val brandHeadingStaticLight100 = TDSTextStyle(
168
196
  fontFamily = TDSFontFamily.TimesModernLight,
169
197
  fontSize = 56.sp,
170
198
  lineHeight = 63.sp
171
199
  )
200
+
172
201
  override val brandHeadingStaticLight010 = TDSTextStyle(
173
202
  fontFamily = TDSFontFamily.TimesModernLight,
174
203
  fontSize = 19.sp,
175
204
  lineHeight = 21.375.sp
176
205
  )
206
+
177
207
  override val brandHeadingStaticLight020 = TDSTextStyle(
178
208
  fontFamily = TDSFontFamily.TimesModernLight,
179
209
  fontSize = 20.sp,
180
210
  lineHeight = 22.5.sp
181
211
  )
212
+
182
213
  override val brandHeadingStaticLight030 = TDSTextStyle(
183
214
  fontFamily = TDSFontFamily.TimesModernLight,
184
215
  fontSize = 24.sp,
185
216
  lineHeight = 27.sp
186
217
  )
218
+
187
219
  override val brandHeadingStaticLight040 = TDSTextStyle(
188
220
  fontFamily = TDSFontFamily.TimesModernLight,
189
221
  fontSize = 28.sp,
190
222
  lineHeight = 31.5.sp
191
223
  )
224
+
192
225
  override val brandHeadingStaticLight050 = TDSTextStyle(
193
226
  fontFamily = TDSFontFamily.TimesModernLight,
194
227
  fontSize = 32.sp,
195
228
  lineHeight = 36.sp
196
229
  )
230
+
197
231
  override val brandHeadingStaticLight060 = TDSTextStyle(
198
232
  fontFamily = TDSFontFamily.TimesModernLight,
199
233
  fontSize = 36.sp,
200
234
  lineHeight = 40.5.sp
201
235
  )
236
+
202
237
  override val brandHeadingStaticLight070 = TDSTextStyle(
203
238
  fontFamily = TDSFontFamily.TimesModernLight,
204
239
  fontSize = 40.sp,
205
240
  lineHeight = 45.sp
206
241
  )
242
+
207
243
  override val brandHeadingStaticLight080 = TDSTextStyle(
208
244
  fontFamily = TDSFontFamily.TimesModernLight,
209
245
  fontSize = 46.sp,
210
246
  lineHeight = 51.75.sp
211
247
  )
248
+
212
249
  override val brandHeadingStaticLight090 = TDSTextStyle(
213
250
  fontFamily = TDSFontFamily.TimesModernLight,
214
251
  fontSize = 48.sp,
215
252
  lineHeight = 54.sp
216
253
  )
254
+
217
255
  override val brandHeadingStaticRegular100 = TDSTextStyle(
218
256
  fontFamily = TDSFontFamily.TimesModernRegular,
219
257
  fontSize = 56.sp,
220
258
  lineHeight = 63.sp
221
259
  )
260
+
222
261
  override val brandHeadingStaticRegular010 = TDSTextStyle(
223
262
  fontFamily = TDSFontFamily.TimesModernRegular,
224
263
  fontSize = 19.sp,
225
264
  lineHeight = 21.375.sp
226
265
  )
266
+
227
267
  override val brandHeadingStaticRegular020 = TDSTextStyle(
228
268
  fontFamily = TDSFontFamily.TimesModernRegular,
229
269
  fontSize = 20.sp,
230
270
  lineHeight = 22.5.sp
231
271
  )
272
+
232
273
  override val brandHeadingStaticRegular030 = TDSTextStyle(
233
274
  fontFamily = TDSFontFamily.TimesModernRegular,
234
275
  fontSize = 24.sp,
235
276
  lineHeight = 27.sp
236
277
  )
278
+
237
279
  override val brandHeadingStaticRegular040 = TDSTextStyle(
238
280
  fontFamily = TDSFontFamily.TimesModernRegular,
239
281
  fontSize = 28.sp,
240
282
  lineHeight = 31.5.sp
241
283
  )
284
+
242
285
  override val brandHeadingStaticRegular050 = TDSTextStyle(
243
286
  fontFamily = TDSFontFamily.TimesModernRegular,
244
287
  fontSize = 32.sp,
245
288
  lineHeight = 36.sp
246
289
  )
290
+
247
291
  override val brandHeadingStaticRegular060 = TDSTextStyle(
248
292
  fontFamily = TDSFontFamily.TimesModernRegular,
249
293
  fontSize = 36.sp,
250
294
  lineHeight = 40.5.sp
251
295
  )
296
+
252
297
  override val brandHeadingStaticRegular070 = TDSTextStyle(
253
298
  fontFamily = TDSFontFamily.TimesModernRegular,
254
299
  fontSize = 40.sp,
255
300
  lineHeight = 45.sp
256
301
  )
302
+
257
303
  override val brandHeadingStaticRegular080 = TDSTextStyle(
258
304
  fontFamily = TDSFontFamily.TimesModernRegular,
259
305
  fontSize = 46.sp,
260
306
  lineHeight = 51.75.sp
261
307
  )
308
+
262
309
  override val brandHeadingStaticRegular090 = TDSTextStyle(
263
310
  fontFamily = TDSFontFamily.TimesModernRegular,
264
311
  fontSize = 48.sp,
265
312
  lineHeight = 54.sp
266
313
  )
314
+
267
315
  override val brandHeadingStaticBold100 = TDSTextStyle(
268
316
  fontFamily = TDSFontFamily.TimesModernBold,
269
317
  fontSize = 56.sp,
270
318
  lineHeight = 63.sp
271
319
  )
320
+
272
321
  override val brandHeadingStaticBold010 = TDSTextStyle(
273
322
  fontFamily = TDSFontFamily.TimesModernBold,
274
323
  fontSize = 19.sp,
275
324
  lineHeight = 21.375.sp
276
325
  )
326
+
277
327
  override val brandHeadingStaticBold020 = TDSTextStyle(
278
328
  fontFamily = TDSFontFamily.TimesModernBold,
279
329
  fontSize = 20.sp,
280
330
  lineHeight = 22.5.sp
281
331
  )
332
+
282
333
  override val brandHeadingStaticBold030 = TDSTextStyle(
283
334
  fontFamily = TDSFontFamily.TimesModernBold,
284
335
  fontSize = 24.sp,
285
336
  lineHeight = 27.sp
286
337
  )
338
+
287
339
  override val brandHeadingStaticBold040 = TDSTextStyle(
288
340
  fontFamily = TDSFontFamily.TimesModernBold,
289
341
  fontSize = 28.sp,
290
342
  lineHeight = 31.5.sp
291
343
  )
344
+
292
345
  override val brandHeadingStaticBold050 = TDSTextStyle(
293
346
  fontFamily = TDSFontFamily.TimesModernBold,
294
347
  fontSize = 32.sp,
295
348
  lineHeight = 36.sp
296
349
  )
350
+
297
351
  override val brandHeadingStaticBold060 = TDSTextStyle(
298
352
  fontFamily = TDSFontFamily.TimesModernBold,
299
353
  fontSize = 36.sp,
300
354
  lineHeight = 40.5.sp
301
355
  )
356
+
302
357
  override val brandHeadingStaticBold070 = TDSTextStyle(
303
358
  fontFamily = TDSFontFamily.TimesModernBold,
304
359
  fontSize = 40.sp,
305
360
  lineHeight = 45.sp
306
361
  )
362
+
307
363
  override val brandHeadingStaticBold080 = TDSTextStyle(
308
364
  fontFamily = TDSFontFamily.TimesModernBold,
309
365
  fontSize = 46.sp,
310
366
  lineHeight = 51.75.sp
311
367
  )
368
+
312
369
  override val brandHeadingStaticBold090 = TDSTextStyle(
313
370
  fontFamily = TDSFontFamily.TimesModernBold,
314
371
  fontSize = 48.sp,
315
372
  lineHeight = 54.sp
316
373
  )
374
+
317
375
  override val brandHeadingStaticBlack100 = TDSTextStyle(
318
376
  fontFamily = TDSFontFamily.TimesModernExtraBold,
319
377
  fontSize = 56.sp,
320
378
  lineHeight = 63.sp
321
379
  )
380
+
322
381
  override val brandHeadingStaticBlack010 = TDSTextStyle(
323
382
  fontFamily = TDSFontFamily.TimesModernExtraBold,
324
383
  fontSize = 19.sp,
325
384
  lineHeight = 21.375.sp
326
385
  )
386
+
327
387
  override val brandHeadingStaticBlack020 = TDSTextStyle(
328
388
  fontFamily = TDSFontFamily.TimesModernExtraBold,
329
389
  fontSize = 20.sp,
330
390
  lineHeight = 22.5.sp
331
391
  )
392
+
332
393
  override val brandHeadingStaticBlack030 = TDSTextStyle(
333
394
  fontFamily = TDSFontFamily.TimesModernExtraBold,
334
395
  fontSize = 24.sp,
335
396
  lineHeight = 27.sp
336
397
  )
398
+
337
399
  override val brandHeadingStaticBlack040 = TDSTextStyle(
338
400
  fontFamily = TDSFontFamily.TimesModernExtraBold,
339
401
  fontSize = 28.sp,
340
402
  lineHeight = 31.5.sp
341
403
  )
404
+
342
405
  override val brandHeadingStaticBlack050 = TDSTextStyle(
343
406
  fontFamily = TDSFontFamily.TimesModernExtraBold,
344
407
  fontSize = 32.sp,
345
408
  lineHeight = 36.sp
346
409
  )
410
+
347
411
  override val brandHeadingStaticBlack060 = TDSTextStyle(
348
412
  fontFamily = TDSFontFamily.TimesModernExtraBold,
349
413
  fontSize = 36.sp,
350
414
  lineHeight = 40.5.sp
351
415
  )
416
+
352
417
  override val brandHeadingStaticBlack070 = TDSTextStyle(
353
418
  fontFamily = TDSFontFamily.TimesModernExtraBold,
354
419
  fontSize = 40.sp,
355
420
  lineHeight = 45.sp
356
421
  )
422
+
357
423
  override val brandHeadingStaticBlack080 = TDSTextStyle(
358
424
  fontFamily = TDSFontFamily.TimesModernExtraBold,
359
425
  fontSize = 46.sp,
360
426
  lineHeight = 51.75.sp
361
427
  )
428
+
362
429
  override val brandHeadingStaticBlack090 = TDSTextStyle(
363
430
  fontFamily = TDSFontFamily.TimesModernExtraBold,
364
431
  fontSize = 48.sp,
365
432
  lineHeight = 54.sp
366
433
  )
434
+
367
435
  override val brandSubheadingLightSmall = TDSTextStyle(
368
436
  fontFamily = TDSFontFamily.TimesModernLight,
369
437
  fontSize = 14.sp,
370
438
  lineHeight = 15.75.sp
371
439
  )
440
+
372
441
  override val brandSubheadingLightMedium = TDSTextStyle(
373
442
  fontFamily = TDSFontFamily.TimesModernLight,
374
443
  fontSize = 18.sp,
375
444
  lineHeight = 20.25.sp
376
445
  )
446
+
377
447
  override val brandSubheadingLightLarge = TDSTextStyle(
378
448
  fontFamily = TDSFontFamily.TimesModernLight,
379
449
  fontSize = 20.sp,
380
450
  lineHeight = 22.5.sp
381
451
  )
452
+
382
453
  override val brandSubheadingLightXlarge = TDSTextStyle(
383
454
  fontFamily = TDSFontFamily.TimesModernLight,
384
455
  fontSize = 24.sp,
385
456
  lineHeight = 27.sp
386
457
  )
458
+
387
459
  override val brandSubheadingRegularSmall = TDSTextStyle(
388
460
  fontFamily = TDSFontFamily.TimesModernRegular,
389
461
  fontSize = 14.sp,
390
462
  lineHeight = 15.75.sp
391
463
  )
464
+
392
465
  override val brandSubheadingRegularMedium = TDSTextStyle(
393
466
  fontFamily = TDSFontFamily.TimesModernRegular,
394
467
  fontSize = 18.sp,
395
468
  lineHeight = 20.25.sp
396
469
  )
470
+
397
471
  override val brandSubheadingRegularLarge = TDSTextStyle(
398
472
  fontFamily = TDSFontFamily.TimesModernRegular,
399
473
  fontSize = 20.sp,
400
474
  lineHeight = 22.5.sp
401
475
  )
476
+
402
477
  override val brandSubheadingRegularXlarge = TDSTextStyle(
403
478
  fontFamily = TDSFontFamily.TimesModernRegular,
404
479
  fontSize = 24.sp,
405
480
  lineHeight = 27.sp
406
481
  )
482
+
407
483
  override val brandSubheadingBoldSmall = TDSTextStyle(
408
484
  fontFamily = TDSFontFamily.TimesModernBold,
409
485
  fontSize = 14.sp,
410
486
  lineHeight = 15.75.sp
411
487
  )
488
+
412
489
  override val brandSubheadingBoldMedium = TDSTextStyle(
413
490
  fontFamily = TDSFontFamily.TimesModernBold,
414
491
  fontSize = 18.sp,
415
492
  lineHeight = 20.25.sp
416
493
  )
494
+
417
495
  override val brandSubheadingBoldLarge = TDSTextStyle(
418
496
  fontFamily = TDSFontFamily.TimesModernBold,
419
497
  fontSize = 20.sp,
420
498
  lineHeight = 22.5.sp
421
499
  )
500
+
422
501
  override val brandSubheadingBoldXlarge = TDSTextStyle(
423
502
  fontFamily = TDSFontFamily.TimesModernBold,
424
503
  fontSize = 24.sp,
425
504
  lineHeight = 27.sp
426
505
  )
506
+
427
507
  override val brandStandfirstLarge = TDSTextStyle(
428
508
  fontFamily = TDSFontFamily.TimesModernRegular,
429
509
  fontSize = 20.sp,
430
510
  lineHeight = 22.5.sp
431
511
  )
512
+
432
513
  override val brandStandfirstMedium = TDSTextStyle(
433
514
  fontFamily = TDSFontFamily.TimesModernRegular,
434
515
  fontSize = 14.sp,
435
516
  lineHeight = 15.75.sp
436
517
  )
518
+
437
519
  override val brandParagraphRegularSmall = TDSTextStyle(
438
520
  fontFamily = TDSFontFamily.TimesDigitalW04Regular,
439
521
  fontSize = 16.sp,
440
522
  lineHeight = 24.sp
441
523
  )
524
+
442
525
  override val brandParagraphRegularMedium = TDSTextStyle(
443
526
  fontFamily = TDSFontFamily.TimesDigitalW04Regular,
444
527
  fontSize = 17.sp,
445
528
  lineHeight = 25.5.sp
446
529
  )
530
+
447
531
  override val brandParagraphBoldSmall = TDSTextStyle(
448
532
  fontFamily = TDSFontFamily.TimesDigitalW04Bold,
449
533
  fontSize = 16.sp,
450
534
  lineHeight = 24.sp
451
535
  )
536
+
452
537
  override val brandParagraphBoldMedium = TDSTextStyle(
453
538
  fontFamily = TDSFontFamily.TimesDigitalW04Bold,
454
539
  fontSize = 17.sp,
455
540
  lineHeight = 25.5.sp
456
541
  )
542
+
457
543
  override val brandCaptionMedium = TDSTextStyle(
458
- fontFamily = TDSFontFamily.RobotoRegular,
544
+ fontFamily = TDSFontFamily.TimesRobotoRegular,
459
545
  fontSize = 14.sp,
460
546
  lineHeight = 21.sp
461
547
  )
548
+
462
549
  override val brandCaptionSmall = TDSTextStyle(
463
- fontFamily = TDSFontFamily.RobotoRegular,
550
+ fontFamily = TDSFontFamily.TimesRobotoRegular,
464
551
  fontSize = 12.sp,
465
552
  lineHeight = 18.sp
466
553
  )
554
+
467
555
  override val brandBylineMedium = TDSTextStyle(
468
- fontFamily = TDSFontFamily.RobotoRegular,
556
+ fontFamily = TDSFontFamily.TimesRobotoRegular,
469
557
  fontSize = 14.sp,
470
558
  lineHeight = 15.75.sp
471
559
  )
560
+
472
561
  override val brandBylineSmall = TDSTextStyle(
473
- fontFamily = TDSFontFamily.RobotoRegular,
562
+ fontFamily = TDSFontFamily.TimesRobotoRegular,
474
563
  fontSize = 12.sp,
475
564
  lineHeight = 13.5.sp
476
565
  )
566
+
477
567
  override val utilityHeadingSmall = TDSTextStyle(
478
- fontFamily = TDSFontFamily.RobotoBold,
568
+ fontFamily = TDSFontFamily.TimesRobotoBold,
479
569
  fontSize = 18.sp,
480
570
  lineHeight = 22.5.sp
481
571
  )
572
+
482
573
  override val utilityHeadingMedium = TDSTextStyle(
483
- fontFamily = TDSFontFamily.RobotoBold,
574
+ fontFamily = TDSFontFamily.TimesRobotoBold,
484
575
  fontSize = 24.sp,
485
576
  lineHeight = 30.sp
486
577
  )
578
+
487
579
  override val utilityHeadingLarge = TDSTextStyle(
488
- fontFamily = TDSFontFamily.RobotoBold,
580
+ fontFamily = TDSFontFamily.TimesRobotoBold,
489
581
  fontSize = 28.sp,
490
582
  lineHeight = 35.sp
491
583
  )
584
+
492
585
  override val utilitySubheadingXsmall = TDSTextStyle(
493
- fontFamily = TDSFontFamily.RobotoMedium,
586
+ fontFamily = TDSFontFamily.TimesRobotoMedium,
494
587
  fontSize = 12.sp,
495
588
  lineHeight = 15.sp
496
589
  )
590
+
497
591
  override val utilitySubheadingSmall = TDSTextStyle(
498
- fontFamily = TDSFontFamily.RobotoMedium,
592
+ fontFamily = TDSFontFamily.TimesRobotoMedium,
499
593
  fontSize = 14.sp,
500
594
  lineHeight = 17.5.sp
501
595
  )
596
+
502
597
  override val utilitySubheadingMedium = TDSTextStyle(
503
- fontFamily = TDSFontFamily.RobotoMedium,
598
+ fontFamily = TDSFontFamily.TimesRobotoMedium,
504
599
  fontSize = 16.sp,
505
600
  lineHeight = 20.sp
506
601
  )
602
+
507
603
  override val utilitySubheadingLarge = TDSTextStyle(
508
- fontFamily = TDSFontFamily.RobotoMedium,
604
+ fontFamily = TDSFontFamily.TimesRobotoMedium,
509
605
  fontSize = 20.sp,
510
606
  lineHeight = 25.sp
511
607
  )
608
+
512
609
  override val utilityBodyRegularXsmall = TDSTextStyle(
513
- fontFamily = TDSFontFamily.RobotoRegular,
610
+ fontFamily = TDSFontFamily.TimesRobotoRegular,
514
611
  fontSize = 12.sp,
515
612
  lineHeight = 18.sp
516
613
  )
614
+
517
615
  override val utilityBodyRegular2xsmall = TDSTextStyle(
518
- fontFamily = TDSFontFamily.RobotoRegular,
616
+ fontFamily = TDSFontFamily.TimesRobotoRegular,
519
617
  fontSize = 10.sp,
520
618
  lineHeight = 15.sp
521
619
  )
620
+
522
621
  override val utilityBodyRegularSmall = TDSTextStyle(
523
- fontFamily = TDSFontFamily.RobotoRegular,
622
+ fontFamily = TDSFontFamily.TimesRobotoRegular,
524
623
  fontSize = 14.sp,
525
624
  lineHeight = 21.sp
526
625
  )
626
+
527
627
  override val utilityBodyRegularMedium = TDSTextStyle(
528
- fontFamily = TDSFontFamily.RobotoRegular,
628
+ fontFamily = TDSFontFamily.TimesRobotoRegular,
529
629
  fontSize = 16.sp,
530
630
  lineHeight = 24.sp
531
631
  )
632
+
532
633
  override val utilityBodyRegularLarge = TDSTextStyle(
533
- fontFamily = TDSFontFamily.RobotoRegular,
634
+ fontFamily = TDSFontFamily.TimesRobotoRegular,
534
635
  fontSize = 18.sp,
535
636
  lineHeight = 27.sp
536
637
  )
638
+
537
639
  override val utilityBodyBold2xsmall = TDSTextStyle(
538
- fontFamily = TDSFontFamily.RobotoBold,
640
+ fontFamily = TDSFontFamily.TimesRobotoBold,
539
641
  fontSize = 10.sp,
540
642
  lineHeight = 15.sp
541
643
  )
644
+
542
645
  override val utilityBodyBoldXsmall = TDSTextStyle(
543
- fontFamily = TDSFontFamily.RobotoBold,
646
+ fontFamily = TDSFontFamily.TimesRobotoBold,
544
647
  fontSize = 12.sp,
545
648
  lineHeight = 18.sp
546
649
  )
650
+
547
651
  override val utilityBodyBoldSmall = TDSTextStyle(
548
- fontFamily = TDSFontFamily.RobotoBold,
652
+ fontFamily = TDSFontFamily.TimesRobotoBold,
549
653
  fontSize = 14.sp,
550
654
  lineHeight = 21.sp
551
655
  )
656
+
552
657
  override val utilityBodyBoldMedium = TDSTextStyle(
553
- fontFamily = TDSFontFamily.RobotoBold,
658
+ fontFamily = TDSFontFamily.TimesRobotoBold,
554
659
  fontSize = 16.sp,
555
660
  lineHeight = 24.sp
556
661
  )
662
+
557
663
  override val utilityBodyBoldLarge = TDSTextStyle(
558
- fontFamily = TDSFontFamily.RobotoBold,
664
+ fontFamily = TDSFontFamily.TimesRobotoBold,
559
665
  fontSize = 18.sp,
560
666
  lineHeight = 27.sp
561
667
  )
668
+
562
669
  override val utilityButtonXsmall = TDSTextStyle(
563
- fontFamily = TDSFontFamily.RobotoMedium,
670
+ fontFamily = TDSFontFamily.TimesRobotoMedium,
564
671
  fontSize = 12.sp,
565
672
  lineHeight = 12.sp
566
673
  )
674
+
567
675
  override val utilityButtonSmall = TDSTextStyle(
568
- fontFamily = TDSFontFamily.RobotoMedium,
676
+ fontFamily = TDSFontFamily.TimesRobotoMedium,
569
677
  fontSize = 14.sp,
570
678
  lineHeight = 14.sp
571
679
  )
680
+
572
681
  override val utilityButtonMedium = TDSTextStyle(
573
- fontFamily = TDSFontFamily.RobotoMedium,
682
+ fontFamily = TDSFontFamily.TimesRobotoMedium,
574
683
  fontSize = 16.sp,
575
684
  lineHeight = 16.sp
576
685
  )
686
+
577
687
  override val utilityButtonLarge = TDSTextStyle(
578
- fontFamily = TDSFontFamily.RobotoMedium,
688
+ fontFamily = TDSFontFamily.TimesRobotoMedium,
579
689
  fontSize = 18.sp,
580
690
  lineHeight = 18.sp
581
691
  )
692
+
582
693
  override val utilityLabelXsmall = TDSTextStyle(
583
- fontFamily = TDSFontFamily.RobotoMedium,
694
+ fontFamily = TDSFontFamily.TimesRobotoMedium,
584
695
  fontSize = 12.sp,
585
696
  lineHeight = 13.5.sp
586
697
  )
698
+
587
699
  override val utilityLabelSmall = TDSTextStyle(
588
- fontFamily = TDSFontFamily.RobotoMedium,
700
+ fontFamily = TDSFontFamily.TimesRobotoMedium,
589
701
  fontSize = 14.sp,
590
702
  lineHeight = 15.75.sp
591
703
  )
704
+
592
705
  override val utilityLabelMedium = TDSTextStyle(
593
- fontFamily = TDSFontFamily.RobotoMedium,
706
+ fontFamily = TDSFontFamily.TimesRobotoMedium,
594
707
  fontSize = 16.sp,
595
708
  lineHeight = 18.sp
596
709
  )
710
+
597
711
  override val utilityLabelLarge = TDSTextStyle(
598
- fontFamily = TDSFontFamily.RobotoMedium,
712
+ fontFamily = TDSFontFamily.TimesRobotoMedium,
599
713
  fontSize = 18.sp,
600
714
  lineHeight = 20.25.sp
601
715
  )
716
+
602
717
  override val utilityLinkInlineUtilityXsmall = TDSTextStyle(
603
- fontFamily = TDSFontFamily.RobotoBold,
718
+ fontFamily = TDSFontFamily.TimesRobotoBold,
604
719
  fontSize = 12.sp,
605
720
  lineHeight = 18.sp,
606
721
  textDecoration = TextDecoration.Underline
607
722
  )
723
+
608
724
  override val utilityLinkInlineUtilitySmall = TDSTextStyle(
609
- fontFamily = TDSFontFamily.RobotoBold,
725
+ fontFamily = TDSFontFamily.TimesRobotoBold,
610
726
  fontSize = 14.sp,
611
727
  lineHeight = 21.sp,
612
728
  textDecoration = TextDecoration.Underline
613
729
  )
730
+
614
731
  override val utilityLinkInlineUtilityMedium = TDSTextStyle(
615
- fontFamily = TDSFontFamily.RobotoBold,
732
+ fontFamily = TDSFontFamily.TimesRobotoBold,
616
733
  fontSize = 16.sp,
617
734
  lineHeight = 24.sp,
618
735
  textDecoration = TextDecoration.Underline
619
736
  )
737
+
620
738
  override val utilityLinkInlineUtilityLarge = TDSTextStyle(
621
- fontFamily = TDSFontFamily.RobotoBold,
739
+ fontFamily = TDSFontFamily.TimesRobotoBold,
622
740
  fontSize = 18.sp,
623
741
  lineHeight = 27.sp,
624
742
  textDecoration = TextDecoration.Underline
625
743
  )
744
+
626
745
  override val utilityLinkInlineBrandXsmall = TDSTextStyle(
627
746
  fontFamily = TDSFontFamily.TimesDigitalW04Regular,
628
747
  fontSize = 12.sp,
629
748
  lineHeight = 18.sp,
630
749
  textDecoration = TextDecoration.Underline
631
750
  )
751
+
632
752
  override val utilityLinkInlineBrandSmall = TDSTextStyle(
633
753
  fontFamily = TDSFontFamily.TimesDigitalW04Regular,
634
754
  fontSize = 14.sp,
635
755
  lineHeight = 21.sp,
636
756
  textDecoration = TextDecoration.Underline
637
757
  )
758
+
638
759
  override val utilityLinkInlineBrandMedium = TDSTextStyle(
639
760
  fontFamily = TDSFontFamily.TimesDigitalW04Regular,
640
761
  fontSize = 16.sp,
641
762
  lineHeight = 24.sp,
642
763
  textDecoration = TextDecoration.Underline
643
764
  )
765
+
644
766
  override val utilityLinkInlineBrandLarge = TDSTextStyle(
645
767
  fontFamily = TDSFontFamily.TimesDigitalW04Regular,
646
768
  fontSize = 18.sp,
647
769
  lineHeight = 27.sp,
648
770
  textDecoration = TextDecoration.Underline
649
771
  )
772
+
650
773
  override val utilityLinkStandaloneUtilityXsmall = TDSTextStyle(
651
- fontFamily = TDSFontFamily.RobotoBold,
774
+ fontFamily = TDSFontFamily.TimesRobotoBold,
652
775
  fontSize = 12.sp,
653
776
  lineHeight = 18.sp
654
777
  )
778
+
655
779
  override val utilityLinkStandaloneUtilitySmall = TDSTextStyle(
656
- fontFamily = TDSFontFamily.RobotoBold,
780
+ fontFamily = TDSFontFamily.TimesRobotoBold,
657
781
  fontSize = 14.sp,
658
782
  lineHeight = 21.sp
659
783
  )
784
+
660
785
  override val utilityLinkStandaloneUtilityMedium = TDSTextStyle(
661
- fontFamily = TDSFontFamily.RobotoBold,
786
+ fontFamily = TDSFontFamily.TimesRobotoBold,
662
787
  fontSize = 16.sp,
663
788
  lineHeight = 24.sp
664
789
  )
790
+
665
791
  override val utilityLinkStandaloneUtilityLarge = TDSTextStyle(
666
- fontFamily = TDSFontFamily.RobotoBold,
792
+ fontFamily = TDSFontFamily.TimesRobotoBold,
667
793
  fontSize = 18.sp,
668
794
  lineHeight = 27.sp
669
795
  )
796
+
670
797
  override val utilityLinkStandaloneBrandXsmall = TDSTextStyle(
671
798
  fontFamily = TDSFontFamily.TimesDigitalW04Regular,
672
799
  fontSize = 12.sp,
673
800
  lineHeight = 18.sp
674
801
  )
802
+
675
803
  override val utilityLinkStandaloneBrandSmall = TDSTextStyle(
676
804
  fontFamily = TDSFontFamily.TimesDigitalW04Regular,
677
805
  fontSize = 14.sp,
678
806
  lineHeight = 21.sp
679
807
  )
808
+
680
809
  override val utilityLinkStandaloneBrandMedium = TDSTextStyle(
681
810
  fontFamily = TDSFontFamily.TimesDigitalW04Regular,
682
811
  fontSize = 16.sp,
683
812
  lineHeight = 24.sp
684
813
  )
814
+
685
815
  override val utilityLinkStandaloneBrandLarge = TDSTextStyle(
686
816
  fontFamily = TDSFontFamily.TimesDigitalW04Regular,
687
817
  fontSize = 18.sp,
688
818
  lineHeight = 27.sp
689
819
  )
690
- }
820
+
821
+ override val utilityInputLabelXsmall = TDSTextStyle(
822
+ fontFamily = TDSFontFamily.TimesRobotoRegular,
823
+ fontSize = 12.sp,
824
+ lineHeight = 13.5.sp
825
+ )
826
+
827
+ override val utilityInputLabelSmall = TDSTextStyle(
828
+ fontFamily = TDSFontFamily.TimesRobotoRegular,
829
+ fontSize = 14.sp,
830
+ lineHeight = 15.75.sp
831
+ )
832
+
833
+ override val utilityInputLabelMedium = TDSTextStyle(
834
+ fontFamily = TDSFontFamily.TimesRobotoRegular,
835
+ fontSize = 16.sp,
836
+ lineHeight = 18.sp
837
+ )
838
+
839
+ override val utilityInputLabelLarge = TDSTextStyle(
840
+ fontFamily = TDSFontFamily.TimesRobotoRegular,
841
+ fontSize = 18.sp,
842
+ lineHeight = 20.25.sp
843
+ )
844
+ }