@times-design-system/theme-android 1.5.0 → 1.7.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.
- package/README.md +314 -0
- package/dist/TimesSpacing.kt +22 -22
- package/dist/TimesTypography.kt +164 -124
- package/dist/interfaces/TDSChannelsColors.kt +316 -280
- package/dist/interfaces/TDSColors.kt +174 -124
- package/dist/interfaces/TDSSpacing.kt +27 -0
- package/dist/interfaces/TDSTypography.kt +134 -0
- package/dist/palettes/DarkBrandColors.kt +140 -160
- package/dist/palettes/DarkBusinessColors.kt +79 -27
- package/dist/palettes/DarkChannelsColors.kt +315 -273
- package/dist/palettes/DarkCommentColors.kt +80 -28
- package/dist/palettes/DarkCoreColors.kt +213 -163
- package/dist/palettes/DarkCultureColors.kt +79 -27
- package/dist/palettes/DarkDataVisualisationColors.kt +196 -196
- package/dist/palettes/DarkHomeColors.kt +79 -27
- package/dist/palettes/DarkIrelandColors.kt +80 -28
- package/dist/palettes/DarkLifeAndStyleColors.kt +80 -28
- package/dist/palettes/DarkMoneyColors.kt +80 -29
- package/dist/palettes/DarkObituariesColors.kt +79 -27
- package/dist/palettes/DarkPuzzlesColors.kt +80 -26
- package/dist/palettes/DarkSportColors.kt +79 -27
- package/dist/palettes/DarkTravelColors.kt +80 -28
- package/dist/palettes/DarkUkColors.kt +80 -27
- package/dist/palettes/DarkWorldColors.kt +80 -28
- package/dist/palettes/LightBrandColors.kt +140 -160
- package/dist/palettes/LightBusinessColors.kt +51 -20
- package/dist/palettes/LightChannelsColors.kt +315 -273
- package/dist/palettes/LightCommentColors.kt +51 -20
- package/dist/palettes/LightCoreColors.kt +216 -162
- package/dist/palettes/LightCultureColors.kt +51 -20
- package/dist/palettes/LightDataVisualisationColors.kt +196 -196
- package/dist/palettes/LightHomeColors.kt +51 -19
- package/dist/palettes/LightIrelandColors.kt +51 -20
- package/dist/palettes/LightLifeAndStyleColors.kt +51 -20
- package/dist/palettes/LightMoneyColors.kt +51 -20
- package/dist/palettes/LightObituariesColors.kt +51 -20
- package/dist/palettes/LightPuzzlesColors.kt +51 -18
- package/dist/palettes/LightSportColors.kt +51 -20
- package/dist/palettes/LightTravelColors.kt +51 -20
- package/dist/palettes/LightUkColors.kt +51 -20
- package/dist/palettes/LightWorldColors.kt +51 -20
- package/package.json +2 -2
- package/dist/interfaces/TDSBrandColors.kt +0 -172
- package/dist/interfaces/TDSDataVisualisationColors.kt +0 -208
- package/dist/interfaces/TDSMarketingColors.kt +0 -22
- package/dist/palettes/DarkMarketingColors.kt +0 -16
- package/dist/palettes/LightMarketingColors.kt +0 -16
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
package uk.co.thetimes.timesDesignSystem
|
|
2
2
|
|
|
3
3
|
import androidx.compose.ui.graphics.Color
|
|
4
|
-
|
|
4
|
+
|
|
5
5
|
interface TDSColors {
|
|
6
6
|
val surfaceUndercanvas: Color
|
|
7
7
|
val surfaceCanvas: Color
|
|
@@ -9,20 +9,18 @@ interface TDSColors {
|
|
|
9
9
|
val surfaceLevel2: Color
|
|
10
10
|
val surfaceLevel3: Color
|
|
11
11
|
val surfaceLevel4: Color
|
|
12
|
-
val surfaceInverse: Color
|
|
13
12
|
val surfaceOverlay: Color
|
|
14
|
-
val
|
|
15
|
-
val
|
|
16
|
-
val
|
|
17
|
-
val
|
|
18
|
-
val
|
|
13
|
+
val surfaceChannel50: Color
|
|
14
|
+
val surfaceChannel100: Color
|
|
15
|
+
val surfaceChannel200: Color
|
|
16
|
+
val surfaceChannel300: Color
|
|
17
|
+
val surfaceChannel400: Color
|
|
18
|
+
val surfaceChannel500: Color
|
|
19
19
|
val surfaceStaticDark: Color
|
|
20
20
|
val surfaceStaticLight: Color
|
|
21
21
|
val textPrimary: Color
|
|
22
22
|
val textSecondary: Color
|
|
23
23
|
val textTertiary: Color
|
|
24
|
-
val textInversePrimary: Color
|
|
25
|
-
val textInverseSecondary: Color
|
|
26
24
|
val textChannelPrimary: Color
|
|
27
25
|
val textChannelSecondary: Color
|
|
28
26
|
val textStaticDark: Color
|
|
@@ -30,32 +28,17 @@ interface TDSColors {
|
|
|
30
28
|
val iconPrimary: Color
|
|
31
29
|
val iconSecondary: Color
|
|
32
30
|
val iconTertiary: Color
|
|
33
|
-
val iconInversePrimary: Color
|
|
34
|
-
val iconInverseSecondary: Color
|
|
35
31
|
val iconChannelPrimary: Color
|
|
36
32
|
val iconChannelSecondary: Color
|
|
37
33
|
val borderPrimary: Color
|
|
38
34
|
val borderSecondary: Color
|
|
39
35
|
val borderTertiary: Color
|
|
40
|
-
val borderInversePrimary: Color
|
|
41
|
-
val borderInverseSecondary: Color
|
|
42
36
|
val borderChannelPrimary: Color
|
|
43
37
|
val borderChannelSecondary: Color
|
|
44
38
|
val borderChannelTertiary: Color
|
|
45
39
|
val borderElevation: Color
|
|
46
40
|
val borderStaticDark: Color
|
|
47
41
|
val borderStaticLight: Color
|
|
48
|
-
val tagFilledLiveFill: Color
|
|
49
|
-
val tagFilledLiveText: Color
|
|
50
|
-
val tagFilledPrimaryFill: Color
|
|
51
|
-
val tagFilledPrimaryText: Color
|
|
52
|
-
val tagFilledSecondaryBorder: Color
|
|
53
|
-
val tagFilledSecondaryFill: Color
|
|
54
|
-
val tagFilledSecondaryText: Color
|
|
55
|
-
val tagInlineLiveText: Color
|
|
56
|
-
val tagInlinePrimaryText: Color
|
|
57
|
-
val tagInlineSecondaryText: Color
|
|
58
|
-
val tagChannelText: Color
|
|
59
42
|
val inputFillDefault: Color
|
|
60
43
|
val inputFillError: Color
|
|
61
44
|
val inputFillHover: Color
|
|
@@ -104,33 +87,26 @@ interface TDSColors {
|
|
|
104
87
|
val feedbackIconSuccess: Color
|
|
105
88
|
val feedbackIconWarning: Color
|
|
106
89
|
val feedbackIconInfo: Color
|
|
107
|
-
val
|
|
108
|
-
val
|
|
109
|
-
val
|
|
110
|
-
val
|
|
111
|
-
val
|
|
112
|
-
val
|
|
113
|
-
val
|
|
114
|
-
val
|
|
115
|
-
val
|
|
116
|
-
val
|
|
117
|
-
val
|
|
118
|
-
val
|
|
119
|
-
val
|
|
120
|
-
val
|
|
121
|
-
val
|
|
122
|
-
val
|
|
123
|
-
val
|
|
124
|
-
val
|
|
125
|
-
val
|
|
126
|
-
val
|
|
127
|
-
val interactiveNegativeBorderPressed: Color
|
|
128
|
-
val interactiveNegativeTextDefault: Color
|
|
129
|
-
val interactiveNegativeTextHover: Color
|
|
130
|
-
val interactiveNegativeTextPressed: Color
|
|
131
|
-
val interactiveNegativeIconDefault: Color
|
|
132
|
-
val interactiveNegativeIconHover: Color
|
|
133
|
-
val interactiveNegativeIconPressed: Color
|
|
90
|
+
val activeFill: Color
|
|
91
|
+
val activeText: Color
|
|
92
|
+
val activeBorder: Color
|
|
93
|
+
val activeIcon: Color
|
|
94
|
+
val focusBorder: Color
|
|
95
|
+
val labelPrimary: Color
|
|
96
|
+
val labelSecondary: Color
|
|
97
|
+
val labelChannel: Color
|
|
98
|
+
val labelCallout: Color
|
|
99
|
+
val flagPrimaryFill: Color
|
|
100
|
+
val flagPrimaryText: Color
|
|
101
|
+
val flagPrimaryIcon: Color
|
|
102
|
+
val flagSecondaryText: Color
|
|
103
|
+
val flagSecondaryIcon: Color
|
|
104
|
+
val flagChannelFill: Color
|
|
105
|
+
val flagChannelText: Color
|
|
106
|
+
val flagChannelIcon: Color
|
|
107
|
+
val flagCalloutFill: Color
|
|
108
|
+
val flagCalloutText: Color
|
|
109
|
+
val flagCalloutIcon: Color
|
|
134
110
|
val interactivePrimaryFillDefault: Color
|
|
135
111
|
val interactivePrimaryFillHover: Color
|
|
136
112
|
val interactivePrimaryFillPressed: Color
|
|
@@ -152,78 +128,152 @@ interface TDSColors {
|
|
|
152
128
|
val interactiveSecondaryIconDefault: Color
|
|
153
129
|
val interactiveSecondaryIconHover: Color
|
|
154
130
|
val interactiveSecondaryIconPressed: Color
|
|
155
|
-
val
|
|
156
|
-
val
|
|
157
|
-
val
|
|
158
|
-
val
|
|
159
|
-
val
|
|
160
|
-
val
|
|
161
|
-
val
|
|
162
|
-
val
|
|
163
|
-
val
|
|
164
|
-
val
|
|
165
|
-
val
|
|
166
|
-
val
|
|
167
|
-
val
|
|
168
|
-
val
|
|
169
|
-
val
|
|
170
|
-
val
|
|
171
|
-
val
|
|
172
|
-
val
|
|
173
|
-
val
|
|
174
|
-
val
|
|
175
|
-
val
|
|
176
|
-
val
|
|
177
|
-
val
|
|
178
|
-
val
|
|
179
|
-
val
|
|
180
|
-
val
|
|
181
|
-
val
|
|
182
|
-
val
|
|
183
|
-
val
|
|
184
|
-
val
|
|
185
|
-
val
|
|
186
|
-
val
|
|
187
|
-
val
|
|
188
|
-
val
|
|
189
|
-
val
|
|
190
|
-
val
|
|
191
|
-
val
|
|
192
|
-
val
|
|
193
|
-
val
|
|
194
|
-
val
|
|
195
|
-
val
|
|
196
|
-
val
|
|
197
|
-
val
|
|
198
|
-
val
|
|
199
|
-
val
|
|
200
|
-
val
|
|
201
|
-
val
|
|
202
|
-
val
|
|
203
|
-
val
|
|
204
|
-
val
|
|
205
|
-
val
|
|
206
|
-
val
|
|
207
|
-
val
|
|
208
|
-
val
|
|
209
|
-
val
|
|
210
|
-
val
|
|
211
|
-
val
|
|
212
|
-
val
|
|
213
|
-
val
|
|
214
|
-
val
|
|
215
|
-
val
|
|
216
|
-
val
|
|
217
|
-
val
|
|
218
|
-
val
|
|
219
|
-
val
|
|
220
|
-
val
|
|
221
|
-
val
|
|
222
|
-
val
|
|
223
|
-
val
|
|
224
|
-
val
|
|
225
|
-
val
|
|
131
|
+
val interactiveDisabledA: Color
|
|
132
|
+
val interactiveDisabledB: Color
|
|
133
|
+
val interactiveDisabledC: Color
|
|
134
|
+
val interactiveNegativeFillDefault: Color
|
|
135
|
+
val interactiveNegativeFillHover: Color
|
|
136
|
+
val interactiveNegativeFillPressed: Color
|
|
137
|
+
val interactiveNegativeBorderDefault: Color
|
|
138
|
+
val interactiveNegativeBorderHover: Color
|
|
139
|
+
val interactiveNegativeBorderPressed: Color
|
|
140
|
+
val interactiveNegativeTextDefault: Color
|
|
141
|
+
val interactiveNegativeTextHover: Color
|
|
142
|
+
val interactiveNegativeTextPressed: Color
|
|
143
|
+
val interactiveNegativeIconDefault: Color
|
|
144
|
+
val interactiveNegativeIconHover: Color
|
|
145
|
+
val interactiveNegativeIconPressed: Color
|
|
146
|
+
val interactiveLinkSecondaryTextDefault: Color
|
|
147
|
+
val interactiveLinkSecondaryTextHover: Color
|
|
148
|
+
val interactiveLinkSecondaryTextPressed: Color
|
|
149
|
+
val interactiveLinkSecondaryTextVisited: Color
|
|
150
|
+
val interactiveLinkSecondaryIconDefault: Color
|
|
151
|
+
val interactiveLinkSecondaryIconHover: Color
|
|
152
|
+
val interactiveLinkSecondaryIconPressed: Color
|
|
153
|
+
val interactiveLinkSecondaryIconVisited: Color
|
|
154
|
+
val interactiveLinkSecondaryUnderlineDefault: Color
|
|
155
|
+
val interactiveLinkSecondaryUnderlineHover: Color
|
|
156
|
+
val interactiveLinkSecondaryUnderlinePressed: Color
|
|
157
|
+
val interactiveLinkSecondaryUnderlineVisited: Color
|
|
158
|
+
val interactiveLinkPrimaryTextDefault: Color
|
|
159
|
+
val interactiveLinkPrimaryTextHover: Color
|
|
160
|
+
val interactiveLinkPrimaryTextPressed: Color
|
|
161
|
+
val interactiveLinkPrimaryTextVisited: Color
|
|
162
|
+
val interactiveLinkPrimaryIconDefault: Color
|
|
163
|
+
val interactiveLinkPrimaryIconHover: Color
|
|
164
|
+
val interactiveLinkPrimaryIconPressed: Color
|
|
165
|
+
val interactiveLinkPrimaryIconVisited: Color
|
|
166
|
+
val interactiveLinkPrimaryUnderlineDefault: Color
|
|
167
|
+
val interactiveLinkPrimaryUnderlineHover: Color
|
|
168
|
+
val interactiveLinkPrimaryUnderlinePressed: Color
|
|
169
|
+
val interactiveLinkPrimaryUnderlineVisited: Color
|
|
170
|
+
val interactiveChipPrimaryOnFillDefault: Color
|
|
171
|
+
val interactiveChipPrimaryOnFillHover: Color
|
|
172
|
+
val interactiveChipPrimaryOnFillPressed: Color
|
|
173
|
+
val interactiveChipPrimaryOnTextDefault: Color
|
|
174
|
+
val interactiveChipPrimaryOnTextHover: Color
|
|
175
|
+
val interactiveChipPrimaryOnTextPressed: Color
|
|
176
|
+
val interactiveChipPrimaryOnIconDefault: Color
|
|
177
|
+
val interactiveChipPrimaryOnIconHover: Color
|
|
178
|
+
val interactiveChipPrimaryOnIconPressed: Color
|
|
179
|
+
val interactiveChipPrimaryOffFillDefault: Color
|
|
180
|
+
val interactiveChipPrimaryOffFillHover: Color
|
|
181
|
+
val interactiveChipPrimaryOffFillPressed: Color
|
|
182
|
+
val interactiveChipPrimaryOffTextDefault: Color
|
|
183
|
+
val interactiveChipPrimaryOffTextHover: Color
|
|
184
|
+
val interactiveChipPrimaryOffTextPressed: Color
|
|
185
|
+
val interactiveChipPrimaryOffIconDefault: Color
|
|
186
|
+
val interactiveChipPrimaryOffIconHover: Color
|
|
187
|
+
val interactiveChipPrimaryOffIconPressed: Color
|
|
188
|
+
val interactiveChipPrimaryOffBorderDefault: Color
|
|
189
|
+
val interactiveChipPrimaryOffBorderHover: Color
|
|
190
|
+
val interactiveChipPrimaryOffBorderPressed: Color
|
|
191
|
+
val interactiveChipSecondaryOnTextDefault: Color
|
|
192
|
+
val interactiveChipSecondaryOnTextHover: Color
|
|
193
|
+
val interactiveChipSecondaryOnTextPressed: Color
|
|
194
|
+
val interactiveChipSecondaryOnFillDefault: Color
|
|
195
|
+
val interactiveChipSecondaryOnFillHover: Color
|
|
196
|
+
val interactiveChipSecondaryOnFillPressed: Color
|
|
197
|
+
val interactiveChipSecondaryOnBorderDefault: Color
|
|
198
|
+
val interactiveChipSecondaryOnBorderHover: Color
|
|
199
|
+
val interactiveChipSecondaryOnBorderPressed: Color
|
|
200
|
+
val interactiveChipSecondaryOnIconDefault: Color
|
|
201
|
+
val interactiveChipSecondaryOnIconHover: Color
|
|
202
|
+
val interactiveChipSecondaryOnIconPressed: Color
|
|
203
|
+
val interactiveChipSecondaryOffFillDefault: Color
|
|
204
|
+
val interactiveChipSecondaryOffFillHover: Color
|
|
205
|
+
val interactiveChipSecondaryOffFillPressed: Color
|
|
206
|
+
val interactiveChipSecondaryOffTextDefault: Color
|
|
207
|
+
val interactiveChipSecondaryOffTextHover: Color
|
|
208
|
+
val interactiveChipSecondaryOffTextPressed: Color
|
|
209
|
+
val interactiveChipSecondaryOffIconDefault: Color
|
|
210
|
+
val interactiveChipSecondaryOffIconHover: Color
|
|
211
|
+
val interactiveChipSecondaryOffIconPressed: Color
|
|
212
|
+
val interactiveChipChannelSecondaryOffFillDefault: Color
|
|
213
|
+
val interactiveChipChannelSecondaryOffFillHover: Color
|
|
214
|
+
val interactiveChipChannelSecondaryOffFillPressed: Color
|
|
215
|
+
val interactiveChipChannelSecondaryOffTextDefault: Color
|
|
216
|
+
val interactiveChipChannelSecondaryOffTextHover: Color
|
|
217
|
+
val interactiveChipChannelSecondaryOffTextPressed: Color
|
|
218
|
+
val interactiveChipChannelSecondaryOffIconDefault: Color
|
|
219
|
+
val interactiveChipChannelSecondaryOffIconHover: Color
|
|
220
|
+
val interactiveChipChannelSecondaryOffIconPressed: Color
|
|
221
|
+
val interactiveChipChannelSecondaryOnBorderDefault: Color
|
|
222
|
+
val interactiveChipChannelSecondaryOnBorderHover: Color
|
|
223
|
+
val interactiveChipChannelSecondaryOnBorderPressed: Color
|
|
224
|
+
val interactiveChipChannelSecondaryOnFillDefault: Color
|
|
225
|
+
val interactiveChipChannelSecondaryOnFillHover: Color
|
|
226
|
+
val interactiveChipChannelSecondaryOnFillPressed: Color
|
|
227
|
+
val interactiveChipChannelSecondaryOnTextDefault: Color
|
|
228
|
+
val interactiveChipChannelSecondaryOnTextHover: Color
|
|
229
|
+
val interactiveChipChannelSecondaryOnTextPressed: Color
|
|
230
|
+
val interactiveChipChannelSecondaryOnIconDefault: Color
|
|
231
|
+
val interactiveChipChannelSecondaryOnIconHover: Color
|
|
232
|
+
val interactiveChipChannelSecondaryOnIconPressed: Color
|
|
233
|
+
val interactiveChipChannelPrimaryOffFillDefault: Color
|
|
234
|
+
val interactiveChipChannelPrimaryOffFillHover: Color
|
|
235
|
+
val interactiveChipChannelPrimaryOffFillPressed: Color
|
|
236
|
+
val interactiveChipChannelPrimaryOffTextDefault: Color
|
|
237
|
+
val interactiveChipChannelPrimaryOffTextHover: Color
|
|
238
|
+
val interactiveChipChannelPrimaryOffTextPressed: Color
|
|
239
|
+
val interactiveChipChannelPrimaryOffIconDefault: Color
|
|
240
|
+
val interactiveChipChannelPrimaryOffIconHover: Color
|
|
241
|
+
val interactiveChipChannelPrimaryOffIconPressed: Color
|
|
242
|
+
val interactiveChipChannelPrimaryOffBorderDefault: Color
|
|
243
|
+
val interactiveChipChannelPrimaryOffBorderHover: Color
|
|
244
|
+
val interactiveChipChannelPrimaryOffBorderPressed: Color
|
|
245
|
+
val interactiveChipChannelPrimaryOnFillDefault: Color
|
|
246
|
+
val interactiveChipChannelPrimaryOnFillHover: Color
|
|
247
|
+
val interactiveChipChannelPrimaryOnFillPressed: Color
|
|
248
|
+
val interactiveChipChannelPrimaryOnTextDefault: Color
|
|
249
|
+
val interactiveChipChannelPrimaryOnTextHover: Color
|
|
250
|
+
val interactiveChipChannelPrimaryOnTextPressed: Color
|
|
251
|
+
val interactiveChipChannelPrimaryOnIconDefault: Color
|
|
252
|
+
val interactiveChipChannelPrimaryOnIconHover: Color
|
|
253
|
+
val interactiveChipChannelPrimaryOnIconPressed: Color
|
|
254
|
+
val toastFillInfo: Color
|
|
255
|
+
val toastFillSuccess: Color
|
|
256
|
+
val toastFillWarning: Color
|
|
257
|
+
val toastFillError: Color
|
|
258
|
+
val toastIconInfo: Color
|
|
259
|
+
val toastIconSuccess: Color
|
|
260
|
+
val toastIconWarning: Color
|
|
261
|
+
val toastIconError: Color
|
|
262
|
+
val toastTextInfo: Color
|
|
263
|
+
val toastTextSuccess: Color
|
|
264
|
+
val toastTextError: Color
|
|
265
|
+
val toastTextWarning: Color
|
|
266
|
+
val toastLinkInfoDefault: Color
|
|
267
|
+
val toastLinkInfoHover: Color
|
|
268
|
+
val toastLinkInfoPressed: Color
|
|
269
|
+
val toastLinkSuccessDefault: Color
|
|
270
|
+
val toastLinkSuccessHover: Color
|
|
271
|
+
val toastLinkSuccessPressed: Color
|
|
272
|
+
val toastLinkErrorDefault: Color
|
|
273
|
+
val toastLinkErrorHover: Color
|
|
274
|
+
val toastLinkErrorPressed: Color
|
|
275
|
+
val toastLinkWarningDefault: Color
|
|
276
|
+
val toastLinkWarningHover: Color
|
|
277
|
+
val toastLinkWarningPressed: Color
|
|
226
278
|
val channels: TDSChannelsColors
|
|
227
|
-
val dataVis: TDSDataVisualisationColors
|
|
228
|
-
val marketing: TDSMarketingColors
|
|
229
279
|
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
package uk.co.thetimes.timesDesignSystem
|
|
2
|
+
|
|
3
|
+
import androidx.compose.ui.unit.Dp
|
|
4
|
+
|
|
5
|
+
interface TDSSpacing {
|
|
6
|
+
val spacingStatic10: Dp
|
|
7
|
+
val spacingStatic11: Dp
|
|
8
|
+
val spacingStatic12: Dp
|
|
9
|
+
val spacingStatic13: Dp
|
|
10
|
+
val spacingStatic14: Dp
|
|
11
|
+
val spacingStatic15: Dp
|
|
12
|
+
val spacingStatic16: Dp
|
|
13
|
+
val spacingStatic17: Dp
|
|
14
|
+
val spacingStatic18: Dp
|
|
15
|
+
val spacingStatic19: Dp
|
|
16
|
+
val spacingStatic20: Dp
|
|
17
|
+
val spacingStatic21: Dp
|
|
18
|
+
val spacingStatic01: Dp
|
|
19
|
+
val spacingStatic02: Dp
|
|
20
|
+
val spacingStatic03: Dp
|
|
21
|
+
val spacingStatic04: Dp
|
|
22
|
+
val spacingStatic05: Dp
|
|
23
|
+
val spacingStatic06: Dp
|
|
24
|
+
val spacingStatic07: Dp
|
|
25
|
+
val spacingStatic08: Dp
|
|
26
|
+
val spacingStatic09: Dp
|
|
27
|
+
}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
package uk.co.thetimes.timesDesignSystem
|
|
2
|
+
|
|
3
|
+
interface TDSTypography {
|
|
4
|
+
val brandHeadingFluidLight2xsmall: TDSTextStyle
|
|
5
|
+
val brandHeadingFluidLightXsmall: TDSTextStyle
|
|
6
|
+
val brandHeadingFluidLightSmall: TDSTextStyle
|
|
7
|
+
val brandHeadingFluidLightMedium: TDSTextStyle
|
|
8
|
+
val brandHeadingFluidLightLarge: TDSTextStyle
|
|
9
|
+
val brandHeadingFluidLightXlarge: TDSTextStyle
|
|
10
|
+
val brandHeadingFluidLight2xlarge: TDSTextStyle
|
|
11
|
+
val brandHeadingFluidRegular2xsmall: TDSTextStyle
|
|
12
|
+
val brandHeadingFluidRegularXsmall: TDSTextStyle
|
|
13
|
+
val brandHeadingFluidRegularSmall: TDSTextStyle
|
|
14
|
+
val brandHeadingFluidRegularMedium: TDSTextStyle
|
|
15
|
+
val brandHeadingFluidRegularLarge: TDSTextStyle
|
|
16
|
+
val brandHeadingFluidRegularXlarge: TDSTextStyle
|
|
17
|
+
val brandHeadingFluidRegular2xlarge: TDSTextStyle
|
|
18
|
+
val brandHeadingFluidBold2xsmall: TDSTextStyle
|
|
19
|
+
val brandHeadingFluidBoldXsmall: TDSTextStyle
|
|
20
|
+
val brandHeadingFluidBoldSmall: TDSTextStyle
|
|
21
|
+
val brandHeadingFluidBoldMedium: TDSTextStyle
|
|
22
|
+
val brandHeadingFluidBoldLarge: TDSTextStyle
|
|
23
|
+
val brandHeadingFluidBoldXlarge: TDSTextStyle
|
|
24
|
+
val brandHeadingFluidBold2xlarge: TDSTextStyle
|
|
25
|
+
val brandHeadingFluidBlack2xsmall: TDSTextStyle
|
|
26
|
+
val brandHeadingFluidBlackXsmall: TDSTextStyle
|
|
27
|
+
val brandHeadingFluidBlackSmall: TDSTextStyle
|
|
28
|
+
val brandHeadingFluidBlackMedium: TDSTextStyle
|
|
29
|
+
val brandHeadingFluidBlackLarge: TDSTextStyle
|
|
30
|
+
val brandHeadingFluidBlackXlarge: TDSTextStyle
|
|
31
|
+
val brandHeadingFluidBlack2xlarge: TDSTextStyle
|
|
32
|
+
val brandHeadingStaticLight100: TDSTextStyle
|
|
33
|
+
val brandHeadingStaticLight010: TDSTextStyle
|
|
34
|
+
val brandHeadingStaticLight020: TDSTextStyle
|
|
35
|
+
val brandHeadingStaticLight030: TDSTextStyle
|
|
36
|
+
val brandHeadingStaticLight040: TDSTextStyle
|
|
37
|
+
val brandHeadingStaticLight050: TDSTextStyle
|
|
38
|
+
val brandHeadingStaticLight060: TDSTextStyle
|
|
39
|
+
val brandHeadingStaticLight070: TDSTextStyle
|
|
40
|
+
val brandHeadingStaticLight080: TDSTextStyle
|
|
41
|
+
val brandHeadingStaticLight090: TDSTextStyle
|
|
42
|
+
val brandHeadingStaticRegular100: TDSTextStyle
|
|
43
|
+
val brandHeadingStaticRegular010: TDSTextStyle
|
|
44
|
+
val brandHeadingStaticRegular020: TDSTextStyle
|
|
45
|
+
val brandHeadingStaticRegular030: TDSTextStyle
|
|
46
|
+
val brandHeadingStaticRegular040: TDSTextStyle
|
|
47
|
+
val brandHeadingStaticRegular050: TDSTextStyle
|
|
48
|
+
val brandHeadingStaticRegular060: TDSTextStyle
|
|
49
|
+
val brandHeadingStaticRegular070: TDSTextStyle
|
|
50
|
+
val brandHeadingStaticRegular080: TDSTextStyle
|
|
51
|
+
val brandHeadingStaticRegular090: TDSTextStyle
|
|
52
|
+
val brandHeadingStaticBold100: TDSTextStyle
|
|
53
|
+
val brandHeadingStaticBold010: TDSTextStyle
|
|
54
|
+
val brandHeadingStaticBold020: TDSTextStyle
|
|
55
|
+
val brandHeadingStaticBold030: TDSTextStyle
|
|
56
|
+
val brandHeadingStaticBold040: TDSTextStyle
|
|
57
|
+
val brandHeadingStaticBold050: TDSTextStyle
|
|
58
|
+
val brandHeadingStaticBold060: TDSTextStyle
|
|
59
|
+
val brandHeadingStaticBold070: TDSTextStyle
|
|
60
|
+
val brandHeadingStaticBold080: TDSTextStyle
|
|
61
|
+
val brandHeadingStaticBold090: TDSTextStyle
|
|
62
|
+
val brandHeadingStaticBlack100: TDSTextStyle
|
|
63
|
+
val brandHeadingStaticBlack010: TDSTextStyle
|
|
64
|
+
val brandHeadingStaticBlack020: TDSTextStyle
|
|
65
|
+
val brandHeadingStaticBlack030: TDSTextStyle
|
|
66
|
+
val brandHeadingStaticBlack040: TDSTextStyle
|
|
67
|
+
val brandHeadingStaticBlack050: TDSTextStyle
|
|
68
|
+
val brandHeadingStaticBlack060: TDSTextStyle
|
|
69
|
+
val brandHeadingStaticBlack070: TDSTextStyle
|
|
70
|
+
val brandHeadingStaticBlack080: TDSTextStyle
|
|
71
|
+
val brandHeadingStaticBlack090: TDSTextStyle
|
|
72
|
+
val brandSubheadingLightSmall: TDSTextStyle
|
|
73
|
+
val brandSubheadingLightMedium: TDSTextStyle
|
|
74
|
+
val brandSubheadingLightLarge: TDSTextStyle
|
|
75
|
+
val brandSubheadingLightXlarge: TDSTextStyle
|
|
76
|
+
val brandSubheadingRegularSmall: TDSTextStyle
|
|
77
|
+
val brandSubheadingRegularMedium: TDSTextStyle
|
|
78
|
+
val brandSubheadingRegularLarge: TDSTextStyle
|
|
79
|
+
val brandSubheadingRegularXlarge: TDSTextStyle
|
|
80
|
+
val brandSubheadingBoldSmall: TDSTextStyle
|
|
81
|
+
val brandSubheadingBoldMedium: TDSTextStyle
|
|
82
|
+
val brandSubheadingBoldLarge: TDSTextStyle
|
|
83
|
+
val brandSubheadingBoldXlarge: TDSTextStyle
|
|
84
|
+
val brandStandfirstLarge: TDSTextStyle
|
|
85
|
+
val brandStandfirstMedium: TDSTextStyle
|
|
86
|
+
val brandParagraphRegularSmall: TDSTextStyle
|
|
87
|
+
val brandParagraphRegularMedium: TDSTextStyle
|
|
88
|
+
val brandParagraphBoldSmall: TDSTextStyle
|
|
89
|
+
val brandParagraphBoldMedium: TDSTextStyle
|
|
90
|
+
val brandCaption: TDSTextStyle
|
|
91
|
+
val brandBylineMedium: TDSTextStyle
|
|
92
|
+
val brandBylineSmall: TDSTextStyle
|
|
93
|
+
val utilityHeadingSmall: TDSTextStyle
|
|
94
|
+
val utilityHeadingMedium: TDSTextStyle
|
|
95
|
+
val utilityHeadingLarge: TDSTextStyle
|
|
96
|
+
val utilitySubheadingXsmall: TDSTextStyle
|
|
97
|
+
val utilitySubheadingSmall: TDSTextStyle
|
|
98
|
+
val utilitySubheadingMedium: TDSTextStyle
|
|
99
|
+
val utilitySubheadingLarge: TDSTextStyle
|
|
100
|
+
val utilityBodyRegularXsmall: TDSTextStyle
|
|
101
|
+
val utilityBodyRegular2xsmall: TDSTextStyle
|
|
102
|
+
val utilityBodyRegularSmall: TDSTextStyle
|
|
103
|
+
val utilityBodyRegularMedium: TDSTextStyle
|
|
104
|
+
val utilityBodyRegularLarge: TDSTextStyle
|
|
105
|
+
val utilityBodyBold2xsmall: TDSTextStyle
|
|
106
|
+
val utilityBodyBoldXsmall: TDSTextStyle
|
|
107
|
+
val utilityBodyBoldSmall: TDSTextStyle
|
|
108
|
+
val utilityBodyBoldMedium: TDSTextStyle
|
|
109
|
+
val utilityBodyBoldLarge: TDSTextStyle
|
|
110
|
+
val utilityButtonXsmall: TDSTextStyle
|
|
111
|
+
val utilityButtonSmall: TDSTextStyle
|
|
112
|
+
val utilityButtonMedium: TDSTextStyle
|
|
113
|
+
val utilityButtonLarge: TDSTextStyle
|
|
114
|
+
val utilityLabelXsmall: TDSTextStyle
|
|
115
|
+
val utilityLabelSmall: TDSTextStyle
|
|
116
|
+
val utilityLabelMedium: TDSTextStyle
|
|
117
|
+
val utilityLabelLarge: TDSTextStyle
|
|
118
|
+
val utilityLinkInlineUtilityXsmall: TDSTextStyle
|
|
119
|
+
val utilityLinkInlineUtilitySmall: TDSTextStyle
|
|
120
|
+
val utilityLinkInlineUtilityMedium: TDSTextStyle
|
|
121
|
+
val utilityLinkInlineUtilityLarge: TDSTextStyle
|
|
122
|
+
val utilityLinkInlineBrandXsmall: TDSTextStyle
|
|
123
|
+
val utilityLinkInlineBrandSmall: TDSTextStyle
|
|
124
|
+
val utilityLinkInlineBrandMedium: TDSTextStyle
|
|
125
|
+
val utilityLinkInlineBrandLarge: TDSTextStyle
|
|
126
|
+
val utilityLinkStandaloneUtilityXsmall: TDSTextStyle
|
|
127
|
+
val utilityLinkStandaloneUtilitySmall: TDSTextStyle
|
|
128
|
+
val utilityLinkStandaloneUtilityMedium: TDSTextStyle
|
|
129
|
+
val utilityLinkStandaloneUtilityLarge: TDSTextStyle
|
|
130
|
+
val utilityLinkStandaloneBrandXsmall: TDSTextStyle
|
|
131
|
+
val utilityLinkStandaloneBrandSmall: TDSTextStyle
|
|
132
|
+
val utilityLinkStandaloneBrandMedium: TDSTextStyle
|
|
133
|
+
val utilityLinkStandaloneBrandLarge: TDSTextStyle
|
|
134
|
+
}
|