@dialpad/dialtone-tokens 1.3.4 → 1.4.1
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/LICENSE.md +21 -0
- package/dist/android/AndroidManifest.xml +2 -0
- package/dist/android/{tokens.kt → java/tokens.kt} +33 -33
- package/dist/android/{colors.xml → res/values/colors.xml} +17 -31
- package/dist/android/{dimens.xml → res/values/dimens.xml} +1 -16
- package/dist/css/variables.css +34 -34
- package/dist/ios/tokens.swift +33 -33
- package/dist/less/variables.less +34 -34
- package/dist/tokens.json +33 -33
- package/package.json +2 -2
package/LICENSE.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 Dialpad
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
3
|
// Do not edit directly
|
|
4
|
-
// Generated on
|
|
4
|
+
// Generated on Tue, 22 Nov 2022 20:06:00 GMT
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
@@ -87,10 +87,10 @@ object DialtoneTokens {
|
|
|
87
87
|
val dtColorRed300 = Color(0xffff2e2e)
|
|
88
88
|
val dtColorRed400 = Color(0xffa41111)
|
|
89
89
|
val dtColorRed500 = Color(0xff540000)
|
|
90
|
-
val dtColorSurfaceBold = Color(
|
|
90
|
+
val dtColorSurfaceBold = Color(0xffd2d2d2)
|
|
91
91
|
val dtColorSurfaceContrast = Color(0xff222222)
|
|
92
92
|
val dtColorSurfaceError = Color(0xffffdcdc)
|
|
93
|
-
val dtColorSurfaceModerate = Color(
|
|
93
|
+
val dtColorSurfaceModerate = Color(0xffe9e9e9)
|
|
94
94
|
val dtColorSurfacePrimary = Color(0xffffffff)
|
|
95
95
|
val dtColorSurfaceSecondary = Color(0xfff9f9f9)
|
|
96
96
|
val dtColorSurfaceStrong = Color(0xff555555)
|
|
@@ -113,9 +113,9 @@ object DialtoneTokens {
|
|
|
113
113
|
val dtColorTextSuccess = Color(0xff00671d)
|
|
114
114
|
val dtColorTextTertiary = Color(0xff555555)
|
|
115
115
|
val dtColorTextWarning = Color(0xff815008)
|
|
116
|
-
val dtFontFamilyBody = "
|
|
117
|
-
val dtFontFamilyExpressive = "Archivo, -apple-system, BlinkMacSystemFont,
|
|
118
|
-
val dtFontFamilyMono = "SF Mono,
|
|
116
|
+
val dtFontFamilyBody = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
117
|
+
val dtFontFamilyExpressive = arrayOf("Archivo", "-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
118
|
+
val dtFontFamilyMono = arrayOf("SFMono-Regular", "SF Mono", "Consolas", "Liberation Mono", "Menlo", "Courier", "monospace")
|
|
119
119
|
val dtFontLineHeight100 = 1
|
|
120
120
|
val dtFontLineHeight200 = 1.2
|
|
121
121
|
val dtFontLineHeight300 = 1.4
|
|
@@ -238,112 +238,112 @@ object DialtoneTokens {
|
|
|
238
238
|
val dtSpace700 = 64.sp
|
|
239
239
|
val dtSpace800 = 128.sp
|
|
240
240
|
val dtSpaceBase = 8.sp
|
|
241
|
-
val dtTypographyBodyBaseFontFamily = "SF Pro"
|
|
241
|
+
val dtTypographyBodyBaseFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
242
242
|
val dtTypographyBodyBaseFontSize = 15.sp
|
|
243
243
|
val dtTypographyBodyBaseFontWeight = "400"
|
|
244
244
|
val dtTypographyBodyBaseLineHeight = 1.6
|
|
245
|
-
val dtTypographyBodyCompactBaseFontFamily = "SF Pro"
|
|
245
|
+
val dtTypographyBodyCompactBaseFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
246
246
|
val dtTypographyBodyCompactBaseFontSize = 15.sp
|
|
247
247
|
val dtTypographyBodyCompactBaseFontWeight = "400"
|
|
248
248
|
val dtTypographyBodyCompactBaseLineHeight = 1.4
|
|
249
|
-
val dtTypographyBodyCompactSmallFontFamily = "SF Pro"
|
|
249
|
+
val dtTypographyBodyCompactSmallFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
250
250
|
val dtTypographyBodyCompactSmallFontSize = 12.sp
|
|
251
251
|
val dtTypographyBodyCompactSmallFontWeight = "400"
|
|
252
252
|
val dtTypographyBodyCompactSmallLineHeight = 1.2
|
|
253
|
-
val dtTypographyBodySmallFontFamily = "SF Pro"
|
|
253
|
+
val dtTypographyBodySmallFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
254
254
|
val dtTypographyBodySmallFontSize = 12.sp
|
|
255
255
|
val dtTypographyBodySmallFontWeight = "400"
|
|
256
256
|
val dtTypographyBodySmallLineHeight = 1.4
|
|
257
|
-
val dtTypographyCodeBaseFontFamily = "SF Mono"
|
|
257
|
+
val dtTypographyCodeBaseFontFamily = arrayOf("SFMono-Regular", "SF Mono", "Consolas", "Liberation Mono", "Menlo", "Courier", "monospace")
|
|
258
258
|
val dtTypographyCodeBaseFontSize = 15.sp
|
|
259
259
|
val dtTypographyCodeBaseFontWeight = "400"
|
|
260
260
|
val dtTypographyCodeBaseLineHeight = 1.2
|
|
261
|
-
val dtTypographyCodeSmallFontFamily = "SF Mono"
|
|
261
|
+
val dtTypographyCodeSmallFontFamily = arrayOf("SFMono-Regular", "SF Mono", "Consolas", "Liberation Mono", "Menlo", "Courier", "monospace")
|
|
262
262
|
val dtTypographyCodeSmallFontSize = 12.sp
|
|
263
263
|
val dtTypographyCodeSmallFontWeight = "400"
|
|
264
264
|
val dtTypographyCodeSmallLineHeight = 1.2
|
|
265
|
-
val dtTypographyHeadlineCompactLargeFontFamily = "SF Pro"
|
|
265
|
+
val dtTypographyHeadlineCompactLargeFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
266
266
|
val dtTypographyHeadlineCompactLargeFontSize = 19.sp
|
|
267
267
|
val dtTypographyHeadlineCompactLargeFontWeight = "700"
|
|
268
268
|
val dtTypographyHeadlineCompactLargeLineHeight = 1.2
|
|
269
|
-
val dtTypographyHeadlineCompactMediumFontFamily = "SF Pro"
|
|
269
|
+
val dtTypographyHeadlineCompactMediumFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
270
270
|
val dtTypographyHeadlineCompactMediumFontSize = 15.sp
|
|
271
271
|
val dtTypographyHeadlineCompactMediumFontWeight = "700"
|
|
272
272
|
val dtTypographyHeadlineCompactMediumLineHeight = 1.4
|
|
273
|
-
val dtTypographyHeadlineCompactSmallFontFamily = "SF Pro"
|
|
273
|
+
val dtTypographyHeadlineCompactSmallFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
274
274
|
val dtTypographyHeadlineCompactSmallFontSize = 12.sp
|
|
275
275
|
val dtTypographyHeadlineCompactSmallFontWeight = "700"
|
|
276
276
|
val dtTypographyHeadlineCompactSmallLineHeight = 1.2
|
|
277
|
-
val dtTypographyHeadlineCompactSoftSmallFontFamily = "SF Pro"
|
|
277
|
+
val dtTypographyHeadlineCompactSoftSmallFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
278
278
|
val dtTypographyHeadlineCompactSoftSmallFontSize = 12.sp
|
|
279
279
|
val dtTypographyHeadlineCompactSoftSmallFontWeight = "500"
|
|
280
280
|
val dtTypographyHeadlineCompactSoftSmallLineHeight = 1.2
|
|
281
|
-
val dtTypographyHeadlineExtraExtraLargeFontFamily = "SF Pro"
|
|
281
|
+
val dtTypographyHeadlineExtraExtraLargeFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
282
282
|
val dtTypographyHeadlineExtraExtraLargeFontSize = 38.sp
|
|
283
283
|
val dtTypographyHeadlineExtraExtraLargeFontWeight = "500"
|
|
284
284
|
val dtTypographyHeadlineExtraExtraLargeLineHeight = 1.2
|
|
285
|
-
val dtTypographyHeadlineExtraLargeFontFamily = "SF Pro"
|
|
285
|
+
val dtTypographyHeadlineExtraLargeFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
286
286
|
val dtTypographyHeadlineExtraLargeFontSize = 27.sp
|
|
287
287
|
val dtTypographyHeadlineExtraLargeFontWeight = "500"
|
|
288
288
|
val dtTypographyHeadlineExtraLargeLineHeight = 1.2
|
|
289
|
-
val dtTypographyHeadlineEyebrowFontFamily = "SF Pro"
|
|
289
|
+
val dtTypographyHeadlineEyebrowFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
290
290
|
val dtTypographyHeadlineEyebrowFontSize = 12.sp
|
|
291
291
|
val dtTypographyHeadlineEyebrowFontWeight = "400"
|
|
292
292
|
val dtTypographyHeadlineEyebrowLineHeight = 1.4
|
|
293
293
|
val dtTypographyHeadlineEyebrowTextCase = "uppercase"
|
|
294
|
-
val dtTypographyHeadlineLargeFontFamily = "SF Pro"
|
|
294
|
+
val dtTypographyHeadlineLargeFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
295
295
|
val dtTypographyHeadlineLargeFontSize = 19.sp
|
|
296
296
|
val dtTypographyHeadlineLargeFontWeight = "700"
|
|
297
297
|
val dtTypographyHeadlineLargeLineHeight = 1.6
|
|
298
|
-
val dtTypographyHeadlineMediumFontFamily = "SF Pro"
|
|
298
|
+
val dtTypographyHeadlineMediumFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
299
299
|
val dtTypographyHeadlineMediumFontSize = 15.sp
|
|
300
300
|
val dtTypographyHeadlineMediumFontWeight = "700"
|
|
301
301
|
val dtTypographyHeadlineMediumLineHeight = 1.6
|
|
302
|
-
val dtTypographyHeadlineSmallFontFamily = "SF Pro"
|
|
302
|
+
val dtTypographyHeadlineSmallFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
303
303
|
val dtTypographyHeadlineSmallFontSize = 12.sp
|
|
304
304
|
val dtTypographyHeadlineSmallFontWeight = "700"
|
|
305
305
|
val dtTypographyHeadlineSmallLineHeight = 1.4
|
|
306
|
-
val dtTypographyHeadlineSoftSmallFontFamily = "SF Pro"
|
|
306
|
+
val dtTypographyHeadlineSoftSmallFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
307
307
|
val dtTypographyHeadlineSoftSmallFontSize = 12.sp
|
|
308
308
|
val dtTypographyHeadlineSoftSmallFontWeight = "500"
|
|
309
309
|
val dtTypographyHeadlineSoftSmallLineHeight = 1.4
|
|
310
|
-
val dtTypographyHelperBaseFontFamily = "SF Pro"
|
|
310
|
+
val dtTypographyHelperBaseFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
311
311
|
val dtTypographyHelperBaseFontSize = 15.sp
|
|
312
312
|
val dtTypographyHelperBaseFontWeight = "400"
|
|
313
313
|
val dtTypographyHelperBaseLineHeight = 1.4
|
|
314
|
-
val dtTypographyHelperSmallFontFamily = "SF Pro"
|
|
314
|
+
val dtTypographyHelperSmallFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
315
315
|
val dtTypographyHelperSmallFontSize = 12.sp
|
|
316
316
|
val dtTypographyHelperSmallFontWeight = "400"
|
|
317
317
|
val dtTypographyHelperSmallLineHeight = 1.2
|
|
318
|
-
val dtTypographyLabelBaseFontFamily = "SF Pro"
|
|
318
|
+
val dtTypographyLabelBaseFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
319
319
|
val dtTypographyLabelBaseFontSize = 15.sp
|
|
320
320
|
val dtTypographyLabelBaseFontWeight = "600"
|
|
321
321
|
val dtTypographyLabelBaseLineHeight = 1.6
|
|
322
|
-
val dtTypographyLabelCompactBaseFontFamily = "SF Pro"
|
|
322
|
+
val dtTypographyLabelCompactBaseFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
323
323
|
val dtTypographyLabelCompactBaseFontSize = 15.sp
|
|
324
324
|
val dtTypographyLabelCompactBaseFontWeight = "600"
|
|
325
325
|
val dtTypographyLabelCompactBaseLineHeight = 1.4
|
|
326
|
-
val dtTypographyLabelCompactPlainBaseFontFamily = "SF Pro"
|
|
326
|
+
val dtTypographyLabelCompactPlainBaseFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
327
327
|
val dtTypographyLabelCompactPlainBaseFontSize = 15.sp
|
|
328
328
|
val dtTypographyLabelCompactPlainBaseFontWeight = "400"
|
|
329
329
|
val dtTypographyLabelCompactPlainBaseLineHeight = 1.4
|
|
330
|
-
val dtTypographyLabelCompactPlainSmallFontFamily = "SF Pro"
|
|
330
|
+
val dtTypographyLabelCompactPlainSmallFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
331
331
|
val dtTypographyLabelCompactPlainSmallFontSize = 12.sp
|
|
332
332
|
val dtTypographyLabelCompactPlainSmallFontWeight = "400"
|
|
333
333
|
val dtTypographyLabelCompactPlainSmallLineHeight = 1.2
|
|
334
|
-
val dtTypographyLabelCompactSmallFontFamily = "SF Pro"
|
|
334
|
+
val dtTypographyLabelCompactSmallFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
335
335
|
val dtTypographyLabelCompactSmallFontSize = 12.sp
|
|
336
336
|
val dtTypographyLabelCompactSmallFontWeight = "600"
|
|
337
337
|
val dtTypographyLabelCompactSmallLineHeight = 1.2
|
|
338
|
-
val dtTypographyLabelPlainBaseFontFamily = "SF Pro"
|
|
338
|
+
val dtTypographyLabelPlainBaseFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
339
339
|
val dtTypographyLabelPlainBaseFontSize = 15.sp
|
|
340
340
|
val dtTypographyLabelPlainBaseFontWeight = "400"
|
|
341
341
|
val dtTypographyLabelPlainBaseLineHeight = 1.6
|
|
342
|
-
val dtTypographyLabelPlainSmallFontFamily = "SF Pro"
|
|
342
|
+
val dtTypographyLabelPlainSmallFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
343
343
|
val dtTypographyLabelPlainSmallFontSize = 12.sp
|
|
344
344
|
val dtTypographyLabelPlainSmallFontWeight = "400"
|
|
345
345
|
val dtTypographyLabelPlainSmallLineHeight = 1.4
|
|
346
|
-
val dtTypographyLabelSmallFontFamily = "SF Pro"
|
|
346
|
+
val dtTypographyLabelSmallFontFamily = arrayOf("-apple-system", "BlinkMacSystemFont", "SF Pro", "Segoe UI Adjusted", "Segoe UI", "SFMono", "Helvetica Neue", "Cantarell", "Ubuntu", "Roboto", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji")
|
|
347
347
|
val dtTypographyLabelSmallFontSize = 12.sp
|
|
348
348
|
val dtTypographyLabelSmallFontWeight = "600"
|
|
349
349
|
val dtTypographyLabelSmallLineHeight = 1.4
|
|
@@ -2,16 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
<!--
|
|
4
4
|
Do not edit directly
|
|
5
|
-
Generated on
|
|
5
|
+
Generated on Tue, 22 Nov 2022 20:06:00 GMT
|
|
6
6
|
-->
|
|
7
7
|
<resources>
|
|
8
|
-
<color name="dt_button_color_background_default"
|
|
9
|
-
<color name="dt_button_color_background_primary">#
|
|
10
|
-
<color name="dt_button_color_background_danger">#
|
|
11
|
-
<color name="dt_button_color_text_default">#
|
|
12
|
-
<color name="dt_button_color_text_primary">#
|
|
13
|
-
<color name="dt_button_color_text_danger">#
|
|
14
|
-
<color name="dt_color_text_link_primary">#ff7c52ff</color>
|
|
8
|
+
<color name="dt_button_color_background_default">#00ffffff</color>
|
|
9
|
+
<color name="dt_button_color_background_primary">#ff7c52ff</color>
|
|
10
|
+
<color name="dt_button_color_background_danger">#ffff2e2e</color>
|
|
11
|
+
<color name="dt_button_color_text_default">#ff7c52ff</color>
|
|
12
|
+
<color name="dt_button_color_text_primary">#ffffffff</color>
|
|
13
|
+
<color name="dt_button_color_text_danger">#ffffffff</color>
|
|
15
14
|
<color name="dt_color_text_primary">#ff000000</color>
|
|
16
15
|
<color name="dt_color_text_secondary">#ff3a3a3a</color>
|
|
17
16
|
<color name="dt_color_text_tertiary">#ff555555</color>
|
|
@@ -23,10 +22,11 @@
|
|
|
23
22
|
<color name="dt_color_text_warning">#ff815008</color>
|
|
24
23
|
<color name="dt_color_text_on_dark_primary">#fff9f9f9</color>
|
|
25
24
|
<color name="dt_color_text_on_dark_secondary">#ffd2d2d2</color>
|
|
25
|
+
<color name="dt_color_text_link_primary">#ff7c52ff</color>
|
|
26
26
|
<color name="dt_color_surface_primary">#ffffffff</color>
|
|
27
27
|
<color name="dt_color_surface_secondary">#fff9f9f9</color>
|
|
28
|
-
<color name="dt_color_surface_moderate">#
|
|
29
|
-
<color name="dt_color_surface_bold">#
|
|
28
|
+
<color name="dt_color_surface_moderate">#ffe9e9e9</color>
|
|
29
|
+
<color name="dt_color_surface_bold">#ffd2d2d2</color>
|
|
30
30
|
<color name="dt_color_surface_strong">#ff555555</color>
|
|
31
31
|
<color name="dt_color_surface_contrast">#ff222222</color>
|
|
32
32
|
<color name="dt_color_surface_error">#ffffdcdc</color>
|
|
@@ -80,26 +80,12 @@
|
|
|
80
80
|
<color name="dt_color_tan_400">#ff3f3d3c</color>
|
|
81
81
|
<color name="dt_color_tan_500">#ff121212</color>
|
|
82
82
|
<color name="dt_color_gradient_magenta_purple">#ff000000</color>
|
|
83
|
-
<color name="
|
|
84
|
-
<color name="
|
|
85
|
-
<color name="
|
|
86
|
-
<color name="
|
|
87
|
-
<color name="
|
|
88
|
-
<color name="
|
|
89
|
-
<color name="
|
|
90
|
-
<color name="dt_opacity_700">0.5</color>
|
|
91
|
-
<color name="dt_opacity_800">0.6</color>
|
|
92
|
-
<color name="dt_opacity_900">0.7</color>
|
|
93
|
-
<color name="dt_opacity_1000">0.75</color>
|
|
94
|
-
<color name="dt_opacity_1100">0.8</color>
|
|
95
|
-
<color name="dt_opacity_1200">0.9</color>
|
|
96
|
-
<color name="dt_opacity_1300">1</color>
|
|
97
|
-
<color name="dt_shadow_small_0_color">#00000026</color>
|
|
98
|
-
<color name="dt_shadow_medium_0_color">#00000040</color>
|
|
99
|
-
<color name="dt_shadow_large_0_color">#0000004d</color>
|
|
100
|
-
<color name="dt_shadow_extra_large_0_color">#0000004d</color>
|
|
101
|
-
<color name="dt_shadow_card_0_color">#00000008</color>
|
|
102
|
-
<color name="dt_shadow_card_1_color">#0000000a</color>
|
|
103
|
-
<color name="dt_shadow_card_2_color">#00000014</color>
|
|
83
|
+
<color name="dt_shadow_small_0_color">#26000000</color>
|
|
84
|
+
<color name="dt_shadow_medium_0_color">#40000000</color>
|
|
85
|
+
<color name="dt_shadow_large_0_color">#4d000000</color>
|
|
86
|
+
<color name="dt_shadow_extra_large_0_color">#4d000000</color>
|
|
87
|
+
<color name="dt_shadow_card_0_color">#08000000</color>
|
|
88
|
+
<color name="dt_shadow_card_1_color">#0a000000</color>
|
|
89
|
+
<color name="dt_shadow_card_2_color">#14000000</color>
|
|
104
90
|
|
|
105
91
|
</resources>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<!--
|
|
4
4
|
Do not edit directly
|
|
5
|
-
Generated on
|
|
5
|
+
Generated on Tue, 22 Nov 2022 20:06:00 GMT
|
|
6
6
|
-->
|
|
7
7
|
<resources>
|
|
8
8
|
<dimen name="dt_button_border_radius_extra_small">7px</dimen>
|
|
@@ -26,11 +26,6 @@
|
|
|
26
26
|
<dimen name="dt_button_font_size_medium">15px</dimen>
|
|
27
27
|
<dimen name="dt_button_font_size_large">19px</dimen>
|
|
28
28
|
<dimen name="dt_button_font_size_extra_large">27px</dimen>
|
|
29
|
-
<dimen name="dt_button_line_height_size_extra_small">120%</dimen>
|
|
30
|
-
<dimen name="dt_button_line_height_size_small">140%</dimen>
|
|
31
|
-
<dimen name="dt_button_line_height_size_medium">140%</dimen>
|
|
32
|
-
<dimen name="dt_button_line_height_size_large">160%</dimen>
|
|
33
|
-
<dimen name="dt_button_line_height_size_extra_large">160%</dimen>
|
|
34
29
|
<dimen name="dt_size_0">0.00dp</dimen>
|
|
35
30
|
<dimen name="dt_size_100">16.00dp</dimen>
|
|
36
31
|
<dimen name="dt_size_200">32.00dp</dimen>
|
|
@@ -73,16 +68,6 @@
|
|
|
73
68
|
<dimen name="dt_font_size_400">27px</dimen>
|
|
74
69
|
<dimen name="dt_font_size_500">38px</dimen>
|
|
75
70
|
<dimen name="dt_font_size_root">10px</dimen>
|
|
76
|
-
<dimen name="dt_font_line_height_100">100%</dimen>
|
|
77
|
-
<dimen name="dt_font_line_height_200">120%</dimen>
|
|
78
|
-
<dimen name="dt_font_line_height_300">140%</dimen>
|
|
79
|
-
<dimen name="dt_font_line_height_400">160%</dimen>
|
|
80
|
-
<dimen name="dt_font_line_height_500">180%</dimen>
|
|
81
|
-
<dimen name="dt_font_line_height_600">200%</dimen>
|
|
82
|
-
<dimen name="dt_font_weight_normal">400</dimen>
|
|
83
|
-
<dimen name="dt_font_weight_medium">500</dimen>
|
|
84
|
-
<dimen name="dt_font_weight_semi_bold">600</dimen>
|
|
85
|
-
<dimen name="dt_font_weight_bold">700</dimen>
|
|
86
71
|
<dimen name="dt_space_0">0px</dimen>
|
|
87
72
|
<dimen name="dt_space_100">1px</dimen>
|
|
88
73
|
<dimen name="dt_space_200">2px</dimen>
|
package/dist/css/variables.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 22 Nov 2022 20:06:00 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
@@ -40,7 +40,6 @@
|
|
|
40
40
|
--dt-button-line-height-size-medium: 140%;
|
|
41
41
|
--dt-button-line-height-size-large: 160%;
|
|
42
42
|
--dt-button-line-height-size-extra-large: 160%;
|
|
43
|
-
--dt-color-text-link-primary: #7c52ff;
|
|
44
43
|
--dt-color-text-primary: #000000;
|
|
45
44
|
--dt-color-text-secondary: #3a3a3a;
|
|
46
45
|
--dt-color-text-tertiary: #555555;
|
|
@@ -52,10 +51,11 @@
|
|
|
52
51
|
--dt-color-text-warning: #815008;
|
|
53
52
|
--dt-color-text-on-dark-primary: #f9f9f9;
|
|
54
53
|
--dt-color-text-on-dark-secondary: #d2d2d2;
|
|
54
|
+
--dt-color-text-link-primary: #7c52ff;
|
|
55
55
|
--dt-color-surface-primary: #ffffff;
|
|
56
56
|
--dt-color-surface-secondary: #f9f9f9;
|
|
57
|
-
--dt-color-surface-moderate: #
|
|
58
|
-
--dt-color-surface-bold: #
|
|
57
|
+
--dt-color-surface-moderate: #e9e9e9;
|
|
58
|
+
--dt-color-surface-bold: #d2d2d2;
|
|
59
59
|
--dt-color-surface-strong: #555555;
|
|
60
60
|
--dt-color-surface-contrast: #222222;
|
|
61
61
|
--dt-color-surface-error: #ffdcdc;
|
|
@@ -109,112 +109,112 @@
|
|
|
109
109
|
--dt-color-tan-400: #3f3d3c;
|
|
110
110
|
--dt-color-tan-500: #121212;
|
|
111
111
|
--dt-color-gradient-magenta-purple: #000000;
|
|
112
|
-
--dt-typography-body-small-font-family: SF Pro;
|
|
112
|
+
--dt-typography-body-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
113
113
|
--dt-typography-body-small-font-weight: 400;
|
|
114
114
|
--dt-typography-body-small-line-height: 140%;
|
|
115
115
|
--dt-typography-body-small-font-size: 1.2rem;
|
|
116
|
-
--dt-typography-body-base-font-family: SF Pro;
|
|
116
|
+
--dt-typography-body-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
117
117
|
--dt-typography-body-base-font-weight: 400;
|
|
118
118
|
--dt-typography-body-base-line-height: 160%;
|
|
119
119
|
--dt-typography-body-base-font-size: 1.5rem;
|
|
120
|
-
--dt-typography-body-compact-small-font-family: SF Pro;
|
|
120
|
+
--dt-typography-body-compact-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
121
121
|
--dt-typography-body-compact-small-font-weight: 400;
|
|
122
122
|
--dt-typography-body-compact-small-line-height: 120%;
|
|
123
123
|
--dt-typography-body-compact-small-font-size: 1.2rem;
|
|
124
|
-
--dt-typography-body-compact-base-font-family: SF Pro;
|
|
124
|
+
--dt-typography-body-compact-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
125
125
|
--dt-typography-body-compact-base-font-weight: 400;
|
|
126
126
|
--dt-typography-body-compact-base-line-height: 140%;
|
|
127
127
|
--dt-typography-body-compact-base-font-size: 1.5rem;
|
|
128
|
-
--dt-typography-headline-eyebrow-font-family: SF Pro;
|
|
128
|
+
--dt-typography-headline-eyebrow-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
129
129
|
--dt-typography-headline-eyebrow-font-weight: 400;
|
|
130
130
|
--dt-typography-headline-eyebrow-line-height: 140%;
|
|
131
131
|
--dt-typography-headline-eyebrow-font-size: 1.2rem;
|
|
132
132
|
--dt-typography-headline-eyebrow-text-case: uppercase;
|
|
133
|
-
--dt-typography-headline-small-font-family: SF Pro;
|
|
133
|
+
--dt-typography-headline-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
134
134
|
--dt-typography-headline-small-font-weight: 700;
|
|
135
135
|
--dt-typography-headline-small-line-height: 140%;
|
|
136
136
|
--dt-typography-headline-small-font-size: 1.2rem;
|
|
137
|
-
--dt-typography-headline-medium-font-family: SF Pro;
|
|
137
|
+
--dt-typography-headline-medium-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
138
138
|
--dt-typography-headline-medium-font-weight: 700;
|
|
139
139
|
--dt-typography-headline-medium-line-height: 160%;
|
|
140
140
|
--dt-typography-headline-medium-font-size: 1.5rem;
|
|
141
|
-
--dt-typography-headline-large-font-family: SF Pro;
|
|
141
|
+
--dt-typography-headline-large-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
142
142
|
--dt-typography-headline-large-font-weight: 700;
|
|
143
143
|
--dt-typography-headline-large-line-height: 160%;
|
|
144
144
|
--dt-typography-headline-large-font-size: 1.9rem;
|
|
145
|
-
--dt-typography-headline-extra-large-font-family: SF Pro;
|
|
145
|
+
--dt-typography-headline-extra-large-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
146
146
|
--dt-typography-headline-extra-large-font-weight: 500;
|
|
147
147
|
--dt-typography-headline-extra-large-line-height: 120%;
|
|
148
148
|
--dt-typography-headline-extra-large-font-size: 2.7rem;
|
|
149
|
-
--dt-typography-headline-extra-extra-large-font-family: SF Pro;
|
|
149
|
+
--dt-typography-headline-extra-extra-large-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
150
150
|
--dt-typography-headline-extra-extra-large-font-weight: 500;
|
|
151
151
|
--dt-typography-headline-extra-extra-large-line-height: 120%;
|
|
152
152
|
--dt-typography-headline-extra-extra-large-font-size: 3.8rem;
|
|
153
|
-
--dt-typography-headline-soft-small-font-family: SF Pro;
|
|
153
|
+
--dt-typography-headline-soft-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
154
154
|
--dt-typography-headline-soft-small-font-weight: 500;
|
|
155
155
|
--dt-typography-headline-soft-small-line-height: 140%;
|
|
156
156
|
--dt-typography-headline-soft-small-font-size: 1.2rem;
|
|
157
|
-
--dt-typography-headline-compact-small-font-family: SF Pro;
|
|
157
|
+
--dt-typography-headline-compact-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
158
158
|
--dt-typography-headline-compact-small-font-weight: 700;
|
|
159
159
|
--dt-typography-headline-compact-small-line-height: 120%;
|
|
160
160
|
--dt-typography-headline-compact-small-font-size: 1.2rem;
|
|
161
|
-
--dt-typography-headline-compact-medium-font-family: SF Pro;
|
|
161
|
+
--dt-typography-headline-compact-medium-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
162
162
|
--dt-typography-headline-compact-medium-font-weight: 700;
|
|
163
163
|
--dt-typography-headline-compact-medium-line-height: 140%;
|
|
164
164
|
--dt-typography-headline-compact-medium-font-size: 1.5rem;
|
|
165
|
-
--dt-typography-headline-compact-large-font-family: SF Pro;
|
|
165
|
+
--dt-typography-headline-compact-large-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
166
166
|
--dt-typography-headline-compact-large-font-weight: 700;
|
|
167
167
|
--dt-typography-headline-compact-large-line-height: 120%;
|
|
168
168
|
--dt-typography-headline-compact-large-font-size: 1.9rem;
|
|
169
|
-
--dt-typography-headline-compact-soft-small-font-family: SF Pro;
|
|
169
|
+
--dt-typography-headline-compact-soft-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
170
170
|
--dt-typography-headline-compact-soft-small-font-weight: 500;
|
|
171
171
|
--dt-typography-headline-compact-soft-small-line-height: 120%;
|
|
172
172
|
--dt-typography-headline-compact-soft-small-font-size: 1.2rem;
|
|
173
|
-
--dt-typography-label-small-font-family: SF Pro;
|
|
173
|
+
--dt-typography-label-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
174
174
|
--dt-typography-label-small-font-weight: 600;
|
|
175
175
|
--dt-typography-label-small-line-height: 140%;
|
|
176
176
|
--dt-typography-label-small-font-size: 1.2rem;
|
|
177
|
-
--dt-typography-label-base-font-family: SF Pro;
|
|
177
|
+
--dt-typography-label-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
178
178
|
--dt-typography-label-base-font-weight: 600;
|
|
179
179
|
--dt-typography-label-base-line-height: 160%;
|
|
180
180
|
--dt-typography-label-base-font-size: 1.5rem;
|
|
181
|
-
--dt-typography-label-compact-small-font-family: SF Pro;
|
|
181
|
+
--dt-typography-label-compact-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
182
182
|
--dt-typography-label-compact-small-font-weight: 600;
|
|
183
183
|
--dt-typography-label-compact-small-line-height: 120%;
|
|
184
184
|
--dt-typography-label-compact-small-font-size: 1.2rem;
|
|
185
|
-
--dt-typography-label-compact-base-font-family: SF Pro;
|
|
185
|
+
--dt-typography-label-compact-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
186
186
|
--dt-typography-label-compact-base-font-weight: 600;
|
|
187
187
|
--dt-typography-label-compact-base-line-height: 140%;
|
|
188
188
|
--dt-typography-label-compact-base-font-size: 1.5rem;
|
|
189
|
-
--dt-typography-label-compact-plain-small-font-family: SF Pro;
|
|
189
|
+
--dt-typography-label-compact-plain-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
190
190
|
--dt-typography-label-compact-plain-small-font-weight: 400;
|
|
191
191
|
--dt-typography-label-compact-plain-small-line-height: 120%;
|
|
192
192
|
--dt-typography-label-compact-plain-small-font-size: 1.2rem;
|
|
193
|
-
--dt-typography-label-compact-plain-base-font-family: SF Pro;
|
|
193
|
+
--dt-typography-label-compact-plain-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
194
194
|
--dt-typography-label-compact-plain-base-font-weight: 400;
|
|
195
195
|
--dt-typography-label-compact-plain-base-line-height: 140%;
|
|
196
196
|
--dt-typography-label-compact-plain-base-font-size: 1.5rem;
|
|
197
|
-
--dt-typography-label-plain-small-font-family: SF Pro;
|
|
197
|
+
--dt-typography-label-plain-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
198
198
|
--dt-typography-label-plain-small-font-weight: 400;
|
|
199
199
|
--dt-typography-label-plain-small-line-height: 140%;
|
|
200
200
|
--dt-typography-label-plain-small-font-size: 1.2rem;
|
|
201
|
-
--dt-typography-label-plain-base-font-family: SF Pro;
|
|
201
|
+
--dt-typography-label-plain-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
202
202
|
--dt-typography-label-plain-base-font-weight: 400;
|
|
203
203
|
--dt-typography-label-plain-base-line-height: 160%;
|
|
204
204
|
--dt-typography-label-plain-base-font-size: 1.5rem;
|
|
205
|
-
--dt-typography-helper-small-font-family: SF Pro;
|
|
205
|
+
--dt-typography-helper-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
206
206
|
--dt-typography-helper-small-font-weight: 400;
|
|
207
207
|
--dt-typography-helper-small-line-height: 120%;
|
|
208
208
|
--dt-typography-helper-small-font-size: 1.2rem;
|
|
209
|
-
--dt-typography-helper-base-font-family: SF Pro;
|
|
209
|
+
--dt-typography-helper-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
210
210
|
--dt-typography-helper-base-font-weight: 400;
|
|
211
211
|
--dt-typography-helper-base-line-height: 140%;
|
|
212
212
|
--dt-typography-helper-base-font-size: 1.5rem;
|
|
213
|
-
--dt-typography-code-small-font-family: SF Mono;
|
|
213
|
+
--dt-typography-code-small-font-family: SFMono-Regular, SF Mono, Consolas, Liberation Mono, Menlo, Courier, monospace;
|
|
214
214
|
--dt-typography-code-small-font-weight: 400;
|
|
215
215
|
--dt-typography-code-small-line-height: 120%;
|
|
216
216
|
--dt-typography-code-small-font-size: 1.2rem;
|
|
217
|
-
--dt-typography-code-base-font-family: SF Mono;
|
|
217
|
+
--dt-typography-code-base-font-family: SFMono-Regular, SF Mono, Consolas, Liberation Mono, Menlo, Courier, monospace;
|
|
218
218
|
--dt-typography-code-base-font-weight: 400;
|
|
219
219
|
--dt-typography-code-base-line-height: 120%;
|
|
220
220
|
--dt-typography-code-base-font-size: 1.5rem;
|
|
@@ -268,9 +268,9 @@
|
|
|
268
268
|
--dt-opacity-1100: 0.8;
|
|
269
269
|
--dt-opacity-1200: 0.9;
|
|
270
270
|
--dt-opacity-1300: 1;
|
|
271
|
-
--dt-font-family-body: "SF Pro, -apple-system, BlinkMacSystemFont,
|
|
272
|
-
--dt-font-family-expressive: "Archivo, -apple-system, BlinkMacSystemFont,
|
|
273
|
-
--dt-font-family-mono: "SF Mono, SFMono-Regular, Consolas,
|
|
271
|
+
--dt-font-family-body: "-apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
|
|
272
|
+
--dt-font-family-expressive: "Archivo,-apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
|
|
273
|
+
--dt-font-family-mono: "SFMono-Regular, SF Mono, Consolas, Liberation Mono, Menlo, Courier, monospace, SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace";
|
|
274
274
|
--dt-font-size-100: 1.2rem;
|
|
275
275
|
--dt-font-size-200: 1.5rem;
|
|
276
276
|
--dt-font-size-300: 1.9rem;
|
package/dist/ios/tokens.swift
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
//
|
|
5
5
|
|
|
6
6
|
// Do not edit directly
|
|
7
|
-
// Generated on
|
|
7
|
+
// Generated on Tue, 22 Nov 2022 20:06:00 GMT
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
import UIKit
|
|
@@ -85,10 +85,10 @@ public enum DialtoneTokens {
|
|
|
85
85
|
public static let dtColorRed300 = UIColor(red: 1.000, green: 0.180, blue: 0.180, alpha: 1)
|
|
86
86
|
public static let dtColorRed400 = UIColor(red: 0.643, green: 0.067, blue: 0.067, alpha: 1)
|
|
87
87
|
public static let dtColorRed500 = UIColor(red: 0.329, green: 0.000, blue: 0.000, alpha: 1)
|
|
88
|
-
public static let dtColorSurfaceBold = UIColor(red: 0.
|
|
88
|
+
public static let dtColorSurfaceBold = UIColor(red: 0.824, green: 0.824, blue: 0.824, alpha: 1)
|
|
89
89
|
public static let dtColorSurfaceContrast = UIColor(red: 0.133, green: 0.133, blue: 0.133, alpha: 1)
|
|
90
90
|
public static let dtColorSurfaceError = UIColor(red: 1.000, green: 0.863, blue: 0.863, alpha: 1)
|
|
91
|
-
public static let dtColorSurfaceModerate = UIColor(red: 0.
|
|
91
|
+
public static let dtColorSurfaceModerate = UIColor(red: 0.914, green: 0.914, blue: 0.914, alpha: 1)
|
|
92
92
|
public static let dtColorSurfacePrimary = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1)
|
|
93
93
|
public static let dtColorSurfaceSecondary = UIColor(red: 0.976, green: 0.976, blue: 0.976, alpha: 1)
|
|
94
94
|
public static let dtColorSurfaceStrong = UIColor(red: 0.333, green: 0.333, blue: 0.333, alpha: 1)
|
|
@@ -111,9 +111,9 @@ public enum DialtoneTokens {
|
|
|
111
111
|
public static let dtColorTextSuccess = UIColor(red: 0.000, green: 0.404, blue: 0.114, alpha: 1)
|
|
112
112
|
public static let dtColorTextTertiary = UIColor(red: 0.333, green: 0.333, blue: 0.333, alpha: 1)
|
|
113
113
|
public static let dtColorTextWarning = UIColor(red: 0.506, green: 0.314, blue: 0.031, alpha: 1)
|
|
114
|
-
public static let dtFontFamilyBody = "SF Pro, -apple-system, BlinkMacSystemFont,
|
|
115
|
-
public static let dtFontFamilyExpressive = "Archivo, -apple-system, BlinkMacSystemFont,
|
|
116
|
-
public static let dtFontFamilyMono = "SF Mono, SFMono-Regular, Consolas,
|
|
114
|
+
public static let dtFontFamilyBody = "-apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol"
|
|
115
|
+
public static let dtFontFamilyExpressive = "Archivo,-apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol"
|
|
116
|
+
public static let dtFontFamilyMono = "SFMono-Regular, SF Mono, Consolas, Liberation Mono, Menlo, Courier, monospace, SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace"
|
|
117
117
|
public static let dtFontLineHeight100 = CGFloat(100.00)
|
|
118
118
|
public static let dtFontLineHeight200 = CGFloat(120.00)
|
|
119
119
|
public static let dtFontLineHeight300 = CGFloat(140.00)
|
|
@@ -236,112 +236,112 @@ public enum DialtoneTokens {
|
|
|
236
236
|
public static let dtSpace700 = CGFloat(64.00)
|
|
237
237
|
public static let dtSpace800 = CGFloat(128.00)
|
|
238
238
|
public static let dtSpaceBase = CGFloat(8.00)
|
|
239
|
-
public static let dtTypographyBodyBaseFontFamily = "SF Pro"
|
|
239
|
+
public static let dtTypographyBodyBaseFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
240
240
|
public static let dtTypographyBodyBaseFontSize = CGFloat(15.00)
|
|
241
241
|
public static let dtTypographyBodyBaseFontWeight = "400"
|
|
242
242
|
public static let dtTypographyBodyBaseLineHeight = CGFloat(160.00)
|
|
243
|
-
public static let dtTypographyBodyCompactBaseFontFamily = "SF Pro"
|
|
243
|
+
public static let dtTypographyBodyCompactBaseFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
244
244
|
public static let dtTypographyBodyCompactBaseFontSize = CGFloat(15.00)
|
|
245
245
|
public static let dtTypographyBodyCompactBaseFontWeight = "400"
|
|
246
246
|
public static let dtTypographyBodyCompactBaseLineHeight = CGFloat(140.00)
|
|
247
|
-
public static let dtTypographyBodyCompactSmallFontFamily = "SF Pro"
|
|
247
|
+
public static let dtTypographyBodyCompactSmallFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
248
248
|
public static let dtTypographyBodyCompactSmallFontSize = CGFloat(12.00)
|
|
249
249
|
public static let dtTypographyBodyCompactSmallFontWeight = "400"
|
|
250
250
|
public static let dtTypographyBodyCompactSmallLineHeight = CGFloat(120.00)
|
|
251
|
-
public static let dtTypographyBodySmallFontFamily = "SF Pro"
|
|
251
|
+
public static let dtTypographyBodySmallFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
252
252
|
public static let dtTypographyBodySmallFontSize = CGFloat(12.00)
|
|
253
253
|
public static let dtTypographyBodySmallFontWeight = "400"
|
|
254
254
|
public static let dtTypographyBodySmallLineHeight = CGFloat(140.00)
|
|
255
|
-
public static let dtTypographyCodeBaseFontFamily =
|
|
255
|
+
public static let dtTypographyCodeBaseFontFamily = SFMono-Regular, SF Mono, Consolas, Liberation Mono, Menlo, Courier, monospace
|
|
256
256
|
public static let dtTypographyCodeBaseFontSize = CGFloat(15.00)
|
|
257
257
|
public static let dtTypographyCodeBaseFontWeight = "400"
|
|
258
258
|
public static let dtTypographyCodeBaseLineHeight = CGFloat(120.00)
|
|
259
|
-
public static let dtTypographyCodeSmallFontFamily =
|
|
259
|
+
public static let dtTypographyCodeSmallFontFamily = SFMono-Regular, SF Mono, Consolas, Liberation Mono, Menlo, Courier, monospace
|
|
260
260
|
public static let dtTypographyCodeSmallFontSize = CGFloat(12.00)
|
|
261
261
|
public static let dtTypographyCodeSmallFontWeight = "400"
|
|
262
262
|
public static let dtTypographyCodeSmallLineHeight = CGFloat(120.00)
|
|
263
|
-
public static let dtTypographyHeadlineCompactLargeFontFamily = "SF Pro"
|
|
263
|
+
public static let dtTypographyHeadlineCompactLargeFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
264
264
|
public static let dtTypographyHeadlineCompactLargeFontSize = CGFloat(19.00)
|
|
265
265
|
public static let dtTypographyHeadlineCompactLargeFontWeight = "700"
|
|
266
266
|
public static let dtTypographyHeadlineCompactLargeLineHeight = CGFloat(120.00)
|
|
267
|
-
public static let dtTypographyHeadlineCompactMediumFontFamily = "SF Pro"
|
|
267
|
+
public static let dtTypographyHeadlineCompactMediumFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
268
268
|
public static let dtTypographyHeadlineCompactMediumFontSize = CGFloat(15.00)
|
|
269
269
|
public static let dtTypographyHeadlineCompactMediumFontWeight = "700"
|
|
270
270
|
public static let dtTypographyHeadlineCompactMediumLineHeight = CGFloat(140.00)
|
|
271
|
-
public static let dtTypographyHeadlineCompactSmallFontFamily = "SF Pro"
|
|
271
|
+
public static let dtTypographyHeadlineCompactSmallFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
272
272
|
public static let dtTypographyHeadlineCompactSmallFontSize = CGFloat(12.00)
|
|
273
273
|
public static let dtTypographyHeadlineCompactSmallFontWeight = "700"
|
|
274
274
|
public static let dtTypographyHeadlineCompactSmallLineHeight = CGFloat(120.00)
|
|
275
|
-
public static let dtTypographyHeadlineCompactSoftSmallFontFamily = "SF Pro"
|
|
275
|
+
public static let dtTypographyHeadlineCompactSoftSmallFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
276
276
|
public static let dtTypographyHeadlineCompactSoftSmallFontSize = CGFloat(12.00)
|
|
277
277
|
public static let dtTypographyHeadlineCompactSoftSmallFontWeight = "500"
|
|
278
278
|
public static let dtTypographyHeadlineCompactSoftSmallLineHeight = CGFloat(120.00)
|
|
279
|
-
public static let dtTypographyHeadlineExtraExtraLargeFontFamily = "SF Pro"
|
|
279
|
+
public static let dtTypographyHeadlineExtraExtraLargeFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
280
280
|
public static let dtTypographyHeadlineExtraExtraLargeFontSize = CGFloat(38.00)
|
|
281
281
|
public static let dtTypographyHeadlineExtraExtraLargeFontWeight = "500"
|
|
282
282
|
public static let dtTypographyHeadlineExtraExtraLargeLineHeight = CGFloat(120.00)
|
|
283
|
-
public static let dtTypographyHeadlineExtraLargeFontFamily = "SF Pro"
|
|
283
|
+
public static let dtTypographyHeadlineExtraLargeFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
284
284
|
public static let dtTypographyHeadlineExtraLargeFontSize = CGFloat(27.00)
|
|
285
285
|
public static let dtTypographyHeadlineExtraLargeFontWeight = "500"
|
|
286
286
|
public static let dtTypographyHeadlineExtraLargeLineHeight = CGFloat(120.00)
|
|
287
|
-
public static let dtTypographyHeadlineEyebrowFontFamily = "SF Pro"
|
|
287
|
+
public static let dtTypographyHeadlineEyebrowFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
288
288
|
public static let dtTypographyHeadlineEyebrowFontSize = CGFloat(12.00)
|
|
289
289
|
public static let dtTypographyHeadlineEyebrowFontWeight = "400"
|
|
290
290
|
public static let dtTypographyHeadlineEyebrowLineHeight = CGFloat(140.00)
|
|
291
291
|
public static let dtTypographyHeadlineEyebrowTextCase = "uppercase"
|
|
292
|
-
public static let dtTypographyHeadlineLargeFontFamily = "SF Pro"
|
|
292
|
+
public static let dtTypographyHeadlineLargeFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
293
293
|
public static let dtTypographyHeadlineLargeFontSize = CGFloat(19.00)
|
|
294
294
|
public static let dtTypographyHeadlineLargeFontWeight = "700"
|
|
295
295
|
public static let dtTypographyHeadlineLargeLineHeight = CGFloat(160.00)
|
|
296
|
-
public static let dtTypographyHeadlineMediumFontFamily = "SF Pro"
|
|
296
|
+
public static let dtTypographyHeadlineMediumFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
297
297
|
public static let dtTypographyHeadlineMediumFontSize = CGFloat(15.00)
|
|
298
298
|
public static let dtTypographyHeadlineMediumFontWeight = "700"
|
|
299
299
|
public static let dtTypographyHeadlineMediumLineHeight = CGFloat(160.00)
|
|
300
|
-
public static let dtTypographyHeadlineSmallFontFamily = "SF Pro"
|
|
300
|
+
public static let dtTypographyHeadlineSmallFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
301
301
|
public static let dtTypographyHeadlineSmallFontSize = CGFloat(12.00)
|
|
302
302
|
public static let dtTypographyHeadlineSmallFontWeight = "700"
|
|
303
303
|
public static let dtTypographyHeadlineSmallLineHeight = CGFloat(140.00)
|
|
304
|
-
public static let dtTypographyHeadlineSoftSmallFontFamily = "SF Pro"
|
|
304
|
+
public static let dtTypographyHeadlineSoftSmallFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
305
305
|
public static let dtTypographyHeadlineSoftSmallFontSize = CGFloat(12.00)
|
|
306
306
|
public static let dtTypographyHeadlineSoftSmallFontWeight = "500"
|
|
307
307
|
public static let dtTypographyHeadlineSoftSmallLineHeight = CGFloat(140.00)
|
|
308
|
-
public static let dtTypographyHelperBaseFontFamily = "SF Pro"
|
|
308
|
+
public static let dtTypographyHelperBaseFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
309
309
|
public static let dtTypographyHelperBaseFontSize = CGFloat(15.00)
|
|
310
310
|
public static let dtTypographyHelperBaseFontWeight = "400"
|
|
311
311
|
public static let dtTypographyHelperBaseLineHeight = CGFloat(140.00)
|
|
312
|
-
public static let dtTypographyHelperSmallFontFamily = "SF Pro"
|
|
312
|
+
public static let dtTypographyHelperSmallFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
313
313
|
public static let dtTypographyHelperSmallFontSize = CGFloat(12.00)
|
|
314
314
|
public static let dtTypographyHelperSmallFontWeight = "400"
|
|
315
315
|
public static let dtTypographyHelperSmallLineHeight = CGFloat(120.00)
|
|
316
|
-
public static let dtTypographyLabelBaseFontFamily = "SF Pro"
|
|
316
|
+
public static let dtTypographyLabelBaseFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
317
317
|
public static let dtTypographyLabelBaseFontSize = CGFloat(15.00)
|
|
318
318
|
public static let dtTypographyLabelBaseFontWeight = "600"
|
|
319
319
|
public static let dtTypographyLabelBaseLineHeight = CGFloat(160.00)
|
|
320
|
-
public static let dtTypographyLabelCompactBaseFontFamily = "SF Pro"
|
|
320
|
+
public static let dtTypographyLabelCompactBaseFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
321
321
|
public static let dtTypographyLabelCompactBaseFontSize = CGFloat(15.00)
|
|
322
322
|
public static let dtTypographyLabelCompactBaseFontWeight = "600"
|
|
323
323
|
public static let dtTypographyLabelCompactBaseLineHeight = CGFloat(140.00)
|
|
324
|
-
public static let dtTypographyLabelCompactPlainBaseFontFamily = "SF Pro"
|
|
324
|
+
public static let dtTypographyLabelCompactPlainBaseFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
325
325
|
public static let dtTypographyLabelCompactPlainBaseFontSize = CGFloat(15.00)
|
|
326
326
|
public static let dtTypographyLabelCompactPlainBaseFontWeight = "400"
|
|
327
327
|
public static let dtTypographyLabelCompactPlainBaseLineHeight = CGFloat(140.00)
|
|
328
|
-
public static let dtTypographyLabelCompactPlainSmallFontFamily = "SF Pro"
|
|
328
|
+
public static let dtTypographyLabelCompactPlainSmallFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
329
329
|
public static let dtTypographyLabelCompactPlainSmallFontSize = CGFloat(12.00)
|
|
330
330
|
public static let dtTypographyLabelCompactPlainSmallFontWeight = "400"
|
|
331
331
|
public static let dtTypographyLabelCompactPlainSmallLineHeight = CGFloat(120.00)
|
|
332
|
-
public static let dtTypographyLabelCompactSmallFontFamily = "SF Pro"
|
|
332
|
+
public static let dtTypographyLabelCompactSmallFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
333
333
|
public static let dtTypographyLabelCompactSmallFontSize = CGFloat(12.00)
|
|
334
334
|
public static let dtTypographyLabelCompactSmallFontWeight = "600"
|
|
335
335
|
public static let dtTypographyLabelCompactSmallLineHeight = CGFloat(120.00)
|
|
336
|
-
public static let dtTypographyLabelPlainBaseFontFamily = "SF Pro"
|
|
336
|
+
public static let dtTypographyLabelPlainBaseFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
337
337
|
public static let dtTypographyLabelPlainBaseFontSize = CGFloat(15.00)
|
|
338
338
|
public static let dtTypographyLabelPlainBaseFontWeight = "400"
|
|
339
339
|
public static let dtTypographyLabelPlainBaseLineHeight = CGFloat(160.00)
|
|
340
|
-
public static let dtTypographyLabelPlainSmallFontFamily = "SF Pro"
|
|
340
|
+
public static let dtTypographyLabelPlainSmallFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
341
341
|
public static let dtTypographyLabelPlainSmallFontSize = CGFloat(12.00)
|
|
342
342
|
public static let dtTypographyLabelPlainSmallFontWeight = "400"
|
|
343
343
|
public static let dtTypographyLabelPlainSmallLineHeight = CGFloat(140.00)
|
|
344
|
-
public static let dtTypographyLabelSmallFontFamily = "SF Pro"
|
|
344
|
+
public static let dtTypographyLabelSmallFontFamily = -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
|
|
345
345
|
public static let dtTypographyLabelSmallFontSize = CGFloat(12.00)
|
|
346
346
|
public static let dtTypographyLabelSmallFontWeight = "600"
|
|
347
347
|
public static let dtTypographyLabelSmallLineHeight = CGFloat(140.00)
|
package/dist/less/variables.less
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on
|
|
3
|
+
// Generated on Tue, 22 Nov 2022 20:05:59 GMT
|
|
4
4
|
|
|
5
5
|
@dt-token-set-order-0: base;
|
|
6
6
|
@dt-token-set-order-1: semantic;
|
|
@@ -38,7 +38,6 @@
|
|
|
38
38
|
@dt-button-line-height-size-medium: 140%;
|
|
39
39
|
@dt-button-line-height-size-large: 160%;
|
|
40
40
|
@dt-button-line-height-size-extra-large: 160%;
|
|
41
|
-
@dt-color-text-link-primary: #7c52ff;
|
|
42
41
|
@dt-color-text-primary: #000000;
|
|
43
42
|
@dt-color-text-secondary: #3a3a3a;
|
|
44
43
|
@dt-color-text-tertiary: #555555;
|
|
@@ -50,10 +49,11 @@
|
|
|
50
49
|
@dt-color-text-warning: #815008;
|
|
51
50
|
@dt-color-text-on-dark-primary: #f9f9f9;
|
|
52
51
|
@dt-color-text-on-dark-secondary: #d2d2d2;
|
|
52
|
+
@dt-color-text-link-primary: #7c52ff;
|
|
53
53
|
@dt-color-surface-primary: #ffffff;
|
|
54
54
|
@dt-color-surface-secondary: #f9f9f9;
|
|
55
|
-
@dt-color-surface-moderate: #
|
|
56
|
-
@dt-color-surface-bold: #
|
|
55
|
+
@dt-color-surface-moderate: #e9e9e9;
|
|
56
|
+
@dt-color-surface-bold: #d2d2d2;
|
|
57
57
|
@dt-color-surface-strong: #555555;
|
|
58
58
|
@dt-color-surface-contrast: #222222;
|
|
59
59
|
@dt-color-surface-error: #ffdcdc;
|
|
@@ -107,112 +107,112 @@
|
|
|
107
107
|
@dt-color-tan-400: #3f3d3c;
|
|
108
108
|
@dt-color-tan-500: #121212;
|
|
109
109
|
@dt-color-gradient-magenta-purple: #000000;
|
|
110
|
-
@dt-typography-body-small-font-family: SF Pro;
|
|
110
|
+
@dt-typography-body-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
111
111
|
@dt-typography-body-small-font-weight: 400;
|
|
112
112
|
@dt-typography-body-small-line-height: 140%;
|
|
113
113
|
@dt-typography-body-small-font-size: 1.2rem;
|
|
114
|
-
@dt-typography-body-base-font-family: SF Pro;
|
|
114
|
+
@dt-typography-body-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
115
115
|
@dt-typography-body-base-font-weight: 400;
|
|
116
116
|
@dt-typography-body-base-line-height: 160%;
|
|
117
117
|
@dt-typography-body-base-font-size: 1.5rem;
|
|
118
|
-
@dt-typography-body-compact-small-font-family: SF Pro;
|
|
118
|
+
@dt-typography-body-compact-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
119
119
|
@dt-typography-body-compact-small-font-weight: 400;
|
|
120
120
|
@dt-typography-body-compact-small-line-height: 120%;
|
|
121
121
|
@dt-typography-body-compact-small-font-size: 1.2rem;
|
|
122
|
-
@dt-typography-body-compact-base-font-family: SF Pro;
|
|
122
|
+
@dt-typography-body-compact-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
123
123
|
@dt-typography-body-compact-base-font-weight: 400;
|
|
124
124
|
@dt-typography-body-compact-base-line-height: 140%;
|
|
125
125
|
@dt-typography-body-compact-base-font-size: 1.5rem;
|
|
126
|
-
@dt-typography-headline-eyebrow-font-family: SF Pro;
|
|
126
|
+
@dt-typography-headline-eyebrow-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
127
127
|
@dt-typography-headline-eyebrow-font-weight: 400;
|
|
128
128
|
@dt-typography-headline-eyebrow-line-height: 140%;
|
|
129
129
|
@dt-typography-headline-eyebrow-font-size: 1.2rem;
|
|
130
130
|
@dt-typography-headline-eyebrow-text-case: uppercase;
|
|
131
|
-
@dt-typography-headline-small-font-family: SF Pro;
|
|
131
|
+
@dt-typography-headline-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
132
132
|
@dt-typography-headline-small-font-weight: 700;
|
|
133
133
|
@dt-typography-headline-small-line-height: 140%;
|
|
134
134
|
@dt-typography-headline-small-font-size: 1.2rem;
|
|
135
|
-
@dt-typography-headline-medium-font-family: SF Pro;
|
|
135
|
+
@dt-typography-headline-medium-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
136
136
|
@dt-typography-headline-medium-font-weight: 700;
|
|
137
137
|
@dt-typography-headline-medium-line-height: 160%;
|
|
138
138
|
@dt-typography-headline-medium-font-size: 1.5rem;
|
|
139
|
-
@dt-typography-headline-large-font-family: SF Pro;
|
|
139
|
+
@dt-typography-headline-large-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
140
140
|
@dt-typography-headline-large-font-weight: 700;
|
|
141
141
|
@dt-typography-headline-large-line-height: 160%;
|
|
142
142
|
@dt-typography-headline-large-font-size: 1.9rem;
|
|
143
|
-
@dt-typography-headline-extra-large-font-family: SF Pro;
|
|
143
|
+
@dt-typography-headline-extra-large-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
144
144
|
@dt-typography-headline-extra-large-font-weight: 500;
|
|
145
145
|
@dt-typography-headline-extra-large-line-height: 120%;
|
|
146
146
|
@dt-typography-headline-extra-large-font-size: 2.7rem;
|
|
147
|
-
@dt-typography-headline-extra-extra-large-font-family: SF Pro;
|
|
147
|
+
@dt-typography-headline-extra-extra-large-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
148
148
|
@dt-typography-headline-extra-extra-large-font-weight: 500;
|
|
149
149
|
@dt-typography-headline-extra-extra-large-line-height: 120%;
|
|
150
150
|
@dt-typography-headline-extra-extra-large-font-size: 3.8rem;
|
|
151
|
-
@dt-typography-headline-soft-small-font-family: SF Pro;
|
|
151
|
+
@dt-typography-headline-soft-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
152
152
|
@dt-typography-headline-soft-small-font-weight: 500;
|
|
153
153
|
@dt-typography-headline-soft-small-line-height: 140%;
|
|
154
154
|
@dt-typography-headline-soft-small-font-size: 1.2rem;
|
|
155
|
-
@dt-typography-headline-compact-small-font-family: SF Pro;
|
|
155
|
+
@dt-typography-headline-compact-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
156
156
|
@dt-typography-headline-compact-small-font-weight: 700;
|
|
157
157
|
@dt-typography-headline-compact-small-line-height: 120%;
|
|
158
158
|
@dt-typography-headline-compact-small-font-size: 1.2rem;
|
|
159
|
-
@dt-typography-headline-compact-medium-font-family: SF Pro;
|
|
159
|
+
@dt-typography-headline-compact-medium-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
160
160
|
@dt-typography-headline-compact-medium-font-weight: 700;
|
|
161
161
|
@dt-typography-headline-compact-medium-line-height: 140%;
|
|
162
162
|
@dt-typography-headline-compact-medium-font-size: 1.5rem;
|
|
163
|
-
@dt-typography-headline-compact-large-font-family: SF Pro;
|
|
163
|
+
@dt-typography-headline-compact-large-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
164
164
|
@dt-typography-headline-compact-large-font-weight: 700;
|
|
165
165
|
@dt-typography-headline-compact-large-line-height: 120%;
|
|
166
166
|
@dt-typography-headline-compact-large-font-size: 1.9rem;
|
|
167
|
-
@dt-typography-headline-compact-soft-small-font-family: SF Pro;
|
|
167
|
+
@dt-typography-headline-compact-soft-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
168
168
|
@dt-typography-headline-compact-soft-small-font-weight: 500;
|
|
169
169
|
@dt-typography-headline-compact-soft-small-line-height: 120%;
|
|
170
170
|
@dt-typography-headline-compact-soft-small-font-size: 1.2rem;
|
|
171
|
-
@dt-typography-label-small-font-family: SF Pro;
|
|
171
|
+
@dt-typography-label-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
172
172
|
@dt-typography-label-small-font-weight: 600;
|
|
173
173
|
@dt-typography-label-small-line-height: 140%;
|
|
174
174
|
@dt-typography-label-small-font-size: 1.2rem;
|
|
175
|
-
@dt-typography-label-base-font-family: SF Pro;
|
|
175
|
+
@dt-typography-label-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
176
176
|
@dt-typography-label-base-font-weight: 600;
|
|
177
177
|
@dt-typography-label-base-line-height: 160%;
|
|
178
178
|
@dt-typography-label-base-font-size: 1.5rem;
|
|
179
|
-
@dt-typography-label-compact-small-font-family: SF Pro;
|
|
179
|
+
@dt-typography-label-compact-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
180
180
|
@dt-typography-label-compact-small-font-weight: 600;
|
|
181
181
|
@dt-typography-label-compact-small-line-height: 120%;
|
|
182
182
|
@dt-typography-label-compact-small-font-size: 1.2rem;
|
|
183
|
-
@dt-typography-label-compact-base-font-family: SF Pro;
|
|
183
|
+
@dt-typography-label-compact-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
184
184
|
@dt-typography-label-compact-base-font-weight: 600;
|
|
185
185
|
@dt-typography-label-compact-base-line-height: 140%;
|
|
186
186
|
@dt-typography-label-compact-base-font-size: 1.5rem;
|
|
187
|
-
@dt-typography-label-compact-plain-small-font-family: SF Pro;
|
|
187
|
+
@dt-typography-label-compact-plain-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
188
188
|
@dt-typography-label-compact-plain-small-font-weight: 400;
|
|
189
189
|
@dt-typography-label-compact-plain-small-line-height: 120%;
|
|
190
190
|
@dt-typography-label-compact-plain-small-font-size: 1.2rem;
|
|
191
|
-
@dt-typography-label-compact-plain-base-font-family: SF Pro;
|
|
191
|
+
@dt-typography-label-compact-plain-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
192
192
|
@dt-typography-label-compact-plain-base-font-weight: 400;
|
|
193
193
|
@dt-typography-label-compact-plain-base-line-height: 140%;
|
|
194
194
|
@dt-typography-label-compact-plain-base-font-size: 1.5rem;
|
|
195
|
-
@dt-typography-label-plain-small-font-family: SF Pro;
|
|
195
|
+
@dt-typography-label-plain-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
196
196
|
@dt-typography-label-plain-small-font-weight: 400;
|
|
197
197
|
@dt-typography-label-plain-small-line-height: 140%;
|
|
198
198
|
@dt-typography-label-plain-small-font-size: 1.2rem;
|
|
199
|
-
@dt-typography-label-plain-base-font-family: SF Pro;
|
|
199
|
+
@dt-typography-label-plain-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
200
200
|
@dt-typography-label-plain-base-font-weight: 400;
|
|
201
201
|
@dt-typography-label-plain-base-line-height: 160%;
|
|
202
202
|
@dt-typography-label-plain-base-font-size: 1.5rem;
|
|
203
|
-
@dt-typography-helper-small-font-family: SF Pro;
|
|
203
|
+
@dt-typography-helper-small-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
204
204
|
@dt-typography-helper-small-font-weight: 400;
|
|
205
205
|
@dt-typography-helper-small-line-height: 120%;
|
|
206
206
|
@dt-typography-helper-small-font-size: 1.2rem;
|
|
207
|
-
@dt-typography-helper-base-font-family: SF Pro;
|
|
207
|
+
@dt-typography-helper-base-font-family: -apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
|
|
208
208
|
@dt-typography-helper-base-font-weight: 400;
|
|
209
209
|
@dt-typography-helper-base-line-height: 140%;
|
|
210
210
|
@dt-typography-helper-base-font-size: 1.5rem;
|
|
211
|
-
@dt-typography-code-small-font-family: SF Mono;
|
|
211
|
+
@dt-typography-code-small-font-family: SFMono-Regular, SF Mono, Consolas, Liberation Mono, Menlo, Courier, monospace;
|
|
212
212
|
@dt-typography-code-small-font-weight: 400;
|
|
213
213
|
@dt-typography-code-small-line-height: 120%;
|
|
214
214
|
@dt-typography-code-small-font-size: 1.2rem;
|
|
215
|
-
@dt-typography-code-base-font-family: SF Mono;
|
|
215
|
+
@dt-typography-code-base-font-family: SFMono-Regular, SF Mono, Consolas, Liberation Mono, Menlo, Courier, monospace;
|
|
216
216
|
@dt-typography-code-base-font-weight: 400;
|
|
217
217
|
@dt-typography-code-base-line-height: 120%;
|
|
218
218
|
@dt-typography-code-base-font-size: 1.5rem;
|
|
@@ -266,9 +266,9 @@
|
|
|
266
266
|
@dt-opacity-1100: 0.8;
|
|
267
267
|
@dt-opacity-1200: 0.9;
|
|
268
268
|
@dt-opacity-1300: 1;
|
|
269
|
-
@dt-font-family-body: "SF Pro, -apple-system, BlinkMacSystemFont,
|
|
270
|
-
@dt-font-family-expressive: "Archivo, -apple-system, BlinkMacSystemFont,
|
|
271
|
-
@dt-font-family-mono: "SF Mono, SFMono-Regular, Consolas,
|
|
269
|
+
@dt-font-family-body: "-apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
|
|
270
|
+
@dt-font-family-expressive: "Archivo,-apple-system,BlinkMacSystemFont,"SF Pro","Segoe UI Adjusted","Segoe UI",SFMono,"Helvetica Neue",Cantarell,Ubuntu,Roboto,Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol";
|
|
271
|
+
@dt-font-family-mono: "SFMono-Regular, SF Mono, Consolas, Liberation Mono, Menlo, Courier, monospace, SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace";
|
|
272
272
|
@dt-font-size-100: 1.2rem;
|
|
273
273
|
@dt-font-size-200: 1.5rem;
|
|
274
274
|
@dt-font-size-300: 1.9rem;
|
package/dist/tokens.json
CHANGED
|
@@ -35,7 +35,6 @@
|
|
|
35
35
|
"dtButtonLineHeightSizeMedium": "140%",
|
|
36
36
|
"dtButtonLineHeightSizeLarge": "160%",
|
|
37
37
|
"dtButtonLineHeightSizeExtraLarge": "160%",
|
|
38
|
-
"dtColorTextLinkPrimary": "#7C52FF",
|
|
39
38
|
"dtColorTextPrimary": "#000000",
|
|
40
39
|
"dtColorTextSecondary": "#3A3A3A",
|
|
41
40
|
"dtColorTextTertiary": "#555555",
|
|
@@ -47,10 +46,11 @@
|
|
|
47
46
|
"dtColorTextWarning": "#815008",
|
|
48
47
|
"dtColorTextOnDarkPrimary": "#F9F9F9",
|
|
49
48
|
"dtColorTextOnDarkSecondary": "#D2D2D2",
|
|
49
|
+
"dtColorTextLinkPrimary": "#7C52FF",
|
|
50
50
|
"dtColorSurfacePrimary": "#fff",
|
|
51
51
|
"dtColorSurfaceSecondary": "#F9F9F9",
|
|
52
|
-
"dtColorSurfaceModerate": "#
|
|
53
|
-
"dtColorSurfaceBold": "#
|
|
52
|
+
"dtColorSurfaceModerate": "#E9E9E9",
|
|
53
|
+
"dtColorSurfaceBold": "#D2D2D2",
|
|
54
54
|
"dtColorSurfaceStrong": "#555555",
|
|
55
55
|
"dtColorSurfaceContrast": "#222222",
|
|
56
56
|
"dtColorSurfaceError": "#FFDCDC",
|
|
@@ -104,112 +104,112 @@
|
|
|
104
104
|
"dtColorTan400": "#3F3D3C",
|
|
105
105
|
"dtColorTan500": "#121212",
|
|
106
106
|
"dtColorGradientMagentaPurple": "linear-gradient(180deg, #F9008E 10%, #7C52FF 90%)",
|
|
107
|
-
"dtTypographyBodySmallFontFamily": "SF Pro",
|
|
107
|
+
"dtTypographyBodySmallFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
108
108
|
"dtTypographyBodySmallFontWeight": 400,
|
|
109
109
|
"dtTypographyBodySmallLineHeight": "140%",
|
|
110
110
|
"dtTypographyBodySmallFontSize": "1.2rem",
|
|
111
|
-
"dtTypographyBodyBaseFontFamily": "SF Pro",
|
|
111
|
+
"dtTypographyBodyBaseFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
112
112
|
"dtTypographyBodyBaseFontWeight": 400,
|
|
113
113
|
"dtTypographyBodyBaseLineHeight": "160%",
|
|
114
114
|
"dtTypographyBodyBaseFontSize": "1.5rem",
|
|
115
|
-
"dtTypographyBodyCompactSmallFontFamily": "SF Pro",
|
|
115
|
+
"dtTypographyBodyCompactSmallFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
116
116
|
"dtTypographyBodyCompactSmallFontWeight": 400,
|
|
117
117
|
"dtTypographyBodyCompactSmallLineHeight": "120%",
|
|
118
118
|
"dtTypographyBodyCompactSmallFontSize": "1.2rem",
|
|
119
|
-
"dtTypographyBodyCompactBaseFontFamily": "SF Pro",
|
|
119
|
+
"dtTypographyBodyCompactBaseFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
120
120
|
"dtTypographyBodyCompactBaseFontWeight": 400,
|
|
121
121
|
"dtTypographyBodyCompactBaseLineHeight": "140%",
|
|
122
122
|
"dtTypographyBodyCompactBaseFontSize": "1.5rem",
|
|
123
|
-
"dtTypographyHeadlineEyebrowFontFamily": "SF Pro",
|
|
123
|
+
"dtTypographyHeadlineEyebrowFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
124
124
|
"dtTypographyHeadlineEyebrowFontWeight": 400,
|
|
125
125
|
"dtTypographyHeadlineEyebrowLineHeight": "140%",
|
|
126
126
|
"dtTypographyHeadlineEyebrowFontSize": "1.2rem",
|
|
127
127
|
"dtTypographyHeadlineEyebrowTextCase": "uppercase",
|
|
128
|
-
"dtTypographyHeadlineSmallFontFamily": "SF Pro",
|
|
128
|
+
"dtTypographyHeadlineSmallFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
129
129
|
"dtTypographyHeadlineSmallFontWeight": 700,
|
|
130
130
|
"dtTypographyHeadlineSmallLineHeight": "140%",
|
|
131
131
|
"dtTypographyHeadlineSmallFontSize": "1.2rem",
|
|
132
|
-
"dtTypographyHeadlineMediumFontFamily": "SF Pro",
|
|
132
|
+
"dtTypographyHeadlineMediumFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
133
133
|
"dtTypographyHeadlineMediumFontWeight": 700,
|
|
134
134
|
"dtTypographyHeadlineMediumLineHeight": "160%",
|
|
135
135
|
"dtTypographyHeadlineMediumFontSize": "1.5rem",
|
|
136
|
-
"dtTypographyHeadlineLargeFontFamily": "SF Pro",
|
|
136
|
+
"dtTypographyHeadlineLargeFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
137
137
|
"dtTypographyHeadlineLargeFontWeight": 700,
|
|
138
138
|
"dtTypographyHeadlineLargeLineHeight": "160%",
|
|
139
139
|
"dtTypographyHeadlineLargeFontSize": "1.9rem",
|
|
140
|
-
"dtTypographyHeadlineExtraLargeFontFamily": "SF Pro",
|
|
140
|
+
"dtTypographyHeadlineExtraLargeFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
141
141
|
"dtTypographyHeadlineExtraLargeFontWeight": 500,
|
|
142
142
|
"dtTypographyHeadlineExtraLargeLineHeight": "120%",
|
|
143
143
|
"dtTypographyHeadlineExtraLargeFontSize": "2.7rem",
|
|
144
|
-
"dtTypographyHeadlineExtraExtraLargeFontFamily": "SF Pro",
|
|
144
|
+
"dtTypographyHeadlineExtraExtraLargeFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
145
145
|
"dtTypographyHeadlineExtraExtraLargeFontWeight": 500,
|
|
146
146
|
"dtTypographyHeadlineExtraExtraLargeLineHeight": "120%",
|
|
147
147
|
"dtTypographyHeadlineExtraExtraLargeFontSize": "3.8rem",
|
|
148
|
-
"dtTypographyHeadlineSoftSmallFontFamily": "SF Pro",
|
|
148
|
+
"dtTypographyHeadlineSoftSmallFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
149
149
|
"dtTypographyHeadlineSoftSmallFontWeight": 500,
|
|
150
150
|
"dtTypographyHeadlineSoftSmallLineHeight": "140%",
|
|
151
151
|
"dtTypographyHeadlineSoftSmallFontSize": "1.2rem",
|
|
152
|
-
"dtTypographyHeadlineCompactSmallFontFamily": "SF Pro",
|
|
152
|
+
"dtTypographyHeadlineCompactSmallFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
153
153
|
"dtTypographyHeadlineCompactSmallFontWeight": 700,
|
|
154
154
|
"dtTypographyHeadlineCompactSmallLineHeight": "120%",
|
|
155
155
|
"dtTypographyHeadlineCompactSmallFontSize": "1.2rem",
|
|
156
|
-
"dtTypographyHeadlineCompactMediumFontFamily": "SF Pro",
|
|
156
|
+
"dtTypographyHeadlineCompactMediumFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
157
157
|
"dtTypographyHeadlineCompactMediumFontWeight": 700,
|
|
158
158
|
"dtTypographyHeadlineCompactMediumLineHeight": "140%",
|
|
159
159
|
"dtTypographyHeadlineCompactMediumFontSize": "1.5rem",
|
|
160
|
-
"dtTypographyHeadlineCompactLargeFontFamily": "SF Pro",
|
|
160
|
+
"dtTypographyHeadlineCompactLargeFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
161
161
|
"dtTypographyHeadlineCompactLargeFontWeight": 700,
|
|
162
162
|
"dtTypographyHeadlineCompactLargeLineHeight": "120%",
|
|
163
163
|
"dtTypographyHeadlineCompactLargeFontSize": "1.9rem",
|
|
164
|
-
"dtTypographyHeadlineCompactSoftSmallFontFamily": "SF Pro",
|
|
164
|
+
"dtTypographyHeadlineCompactSoftSmallFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
165
165
|
"dtTypographyHeadlineCompactSoftSmallFontWeight": 500,
|
|
166
166
|
"dtTypographyHeadlineCompactSoftSmallLineHeight": "120%",
|
|
167
167
|
"dtTypographyHeadlineCompactSoftSmallFontSize": "1.2rem",
|
|
168
|
-
"dtTypographyLabelSmallFontFamily": "SF Pro",
|
|
168
|
+
"dtTypographyLabelSmallFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
169
169
|
"dtTypographyLabelSmallFontWeight": 600,
|
|
170
170
|
"dtTypographyLabelSmallLineHeight": "140%",
|
|
171
171
|
"dtTypographyLabelSmallFontSize": "1.2rem",
|
|
172
|
-
"dtTypographyLabelBaseFontFamily": "SF Pro",
|
|
172
|
+
"dtTypographyLabelBaseFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
173
173
|
"dtTypographyLabelBaseFontWeight": 600,
|
|
174
174
|
"dtTypographyLabelBaseLineHeight": "160%",
|
|
175
175
|
"dtTypographyLabelBaseFontSize": "1.5rem",
|
|
176
|
-
"dtTypographyLabelCompactSmallFontFamily": "SF Pro",
|
|
176
|
+
"dtTypographyLabelCompactSmallFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
177
177
|
"dtTypographyLabelCompactSmallFontWeight": 600,
|
|
178
178
|
"dtTypographyLabelCompactSmallLineHeight": "120%",
|
|
179
179
|
"dtTypographyLabelCompactSmallFontSize": "1.2rem",
|
|
180
|
-
"dtTypographyLabelCompactBaseFontFamily": "SF Pro",
|
|
180
|
+
"dtTypographyLabelCompactBaseFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
181
181
|
"dtTypographyLabelCompactBaseFontWeight": 600,
|
|
182
182
|
"dtTypographyLabelCompactBaseLineHeight": "140%",
|
|
183
183
|
"dtTypographyLabelCompactBaseFontSize": "1.5rem",
|
|
184
|
-
"dtTypographyLabelCompactPlainSmallFontFamily": "SF Pro",
|
|
184
|
+
"dtTypographyLabelCompactPlainSmallFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
185
185
|
"dtTypographyLabelCompactPlainSmallFontWeight": 400,
|
|
186
186
|
"dtTypographyLabelCompactPlainSmallLineHeight": "120%",
|
|
187
187
|
"dtTypographyLabelCompactPlainSmallFontSize": "1.2rem",
|
|
188
|
-
"dtTypographyLabelCompactPlainBaseFontFamily": "SF Pro",
|
|
188
|
+
"dtTypographyLabelCompactPlainBaseFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
189
189
|
"dtTypographyLabelCompactPlainBaseFontWeight": 400,
|
|
190
190
|
"dtTypographyLabelCompactPlainBaseLineHeight": "140%",
|
|
191
191
|
"dtTypographyLabelCompactPlainBaseFontSize": "1.5rem",
|
|
192
|
-
"dtTypographyLabelPlainSmallFontFamily": "SF Pro",
|
|
192
|
+
"dtTypographyLabelPlainSmallFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
193
193
|
"dtTypographyLabelPlainSmallFontWeight": 400,
|
|
194
194
|
"dtTypographyLabelPlainSmallLineHeight": "140%",
|
|
195
195
|
"dtTypographyLabelPlainSmallFontSize": "1.2rem",
|
|
196
|
-
"dtTypographyLabelPlainBaseFontFamily": "SF Pro",
|
|
196
|
+
"dtTypographyLabelPlainBaseFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
197
197
|
"dtTypographyLabelPlainBaseFontWeight": 400,
|
|
198
198
|
"dtTypographyLabelPlainBaseLineHeight": "160%",
|
|
199
199
|
"dtTypographyLabelPlainBaseFontSize": "1.5rem",
|
|
200
|
-
"dtTypographyHelperSmallFontFamily": "SF Pro",
|
|
200
|
+
"dtTypographyHelperSmallFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
201
201
|
"dtTypographyHelperSmallFontWeight": 400,
|
|
202
202
|
"dtTypographyHelperSmallLineHeight": "120%",
|
|
203
203
|
"dtTypographyHelperSmallFontSize": "1.2rem",
|
|
204
|
-
"dtTypographyHelperBaseFontFamily": "SF Pro",
|
|
204
|
+
"dtTypographyHelperBaseFontFamily": "-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
205
205
|
"dtTypographyHelperBaseFontWeight": 400,
|
|
206
206
|
"dtTypographyHelperBaseLineHeight": "140%",
|
|
207
207
|
"dtTypographyHelperBaseFontSize": "1.5rem",
|
|
208
|
-
"dtTypographyCodeSmallFontFamily": "SF Mono",
|
|
208
|
+
"dtTypographyCodeSmallFontFamily": "SFMono-Regular, SF Mono, Consolas, Liberation Mono, Menlo, Courier, monospace",
|
|
209
209
|
"dtTypographyCodeSmallFontWeight": 400,
|
|
210
210
|
"dtTypographyCodeSmallLineHeight": "120%",
|
|
211
211
|
"dtTypographyCodeSmallFontSize": "1.2rem",
|
|
212
|
-
"dtTypographyCodeBaseFontFamily": "SF Mono",
|
|
212
|
+
"dtTypographyCodeBaseFontFamily": "SFMono-Regular, SF Mono, Consolas, Liberation Mono, Menlo, Courier, monospace",
|
|
213
213
|
"dtTypographyCodeBaseFontWeight": 400,
|
|
214
214
|
"dtTypographyCodeBaseLineHeight": "120%",
|
|
215
215
|
"dtTypographyCodeBaseFontSize": "1.5rem",
|
|
@@ -263,9 +263,9 @@
|
|
|
263
263
|
"dtOpacity1100": 0.8,
|
|
264
264
|
"dtOpacity1200": 0.9,
|
|
265
265
|
"dtOpacity1300": 1,
|
|
266
|
-
"dtFontFamilyBody": "\"SF Pro, -apple-system, BlinkMacSystemFont,
|
|
267
|
-
"dtFontFamilyExpressive": "\"Archivo, -apple-system, BlinkMacSystemFont,
|
|
268
|
-
"dtFontFamilyMono": "\"SF Mono, SFMono-Regular, Consolas,
|
|
266
|
+
"dtFontFamilyBody": "\"-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol\"",
|
|
267
|
+
"dtFontFamilyExpressive": "\"Archivo,-apple-system,BlinkMacSystemFont,\"SF Pro\",\"Segoe UI Adjusted\",\"Segoe UI\",SFMono,\"Helvetica Neue\",Cantarell,Ubuntu,Roboto,Arial,\"Noto Sans\",sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol\"",
|
|
268
|
+
"dtFontFamilyMono": "\"SFMono-Regular, SF Mono, Consolas, Liberation Mono, Menlo, Courier, monospace, SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace\"",
|
|
269
269
|
"dtFontSize100": "1.2rem",
|
|
270
270
|
"dtFontSize200": "1.5rem",
|
|
271
271
|
"dtFontSize300": "1.9rem",
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dialpad/dialtone-tokens",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "Design tokens for Dialtone.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
|
-
"build": "npm run transform && ./build.js && ./
|
|
8
|
+
"build": "npm run transform && ./build.js && cp ./AndroidManifest.xml dist/android && ./gradlew publishToMavenLocal -Pversion=$npm_package_version && ./build-ios.js",
|
|
9
9
|
"transform": "token-transformer base.json tokens/tokens.json --expandTypography=true --expandShadow=true",
|
|
10
10
|
"prepublishOnly": "npm run build",
|
|
11
11
|
"release": "semantic-release --no-ci --extends ./release-local.config.js"
|