@times-design-system/theme-android 1.1.1-alpha.831 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/TimesSpacing.kt +28 -0
- package/dist/TimesTypography.kt +563 -872
- package/dist/index.js +1 -0
- package/dist/interfaces/TDSBrandColors.kt +172 -0
- package/dist/interfaces/TDSChannelsColors.kt +285 -0
- package/dist/interfaces/TDSColors.kt +229 -0
- package/dist/interfaces/TDSDataVisualisationColors.kt +208 -0
- package/dist/interfaces/TDSMarketingColors.kt +22 -0
- package/dist/palettes/DarkBrandColors.kt +165 -167
- package/dist/palettes/DarkBusinessColors.kt +34 -149
- package/dist/palettes/DarkChannelsColors.kt +278 -280
- package/dist/palettes/DarkCommentColors.kt +34 -149
- package/dist/palettes/DarkCoreColors.kt +228 -149
- package/dist/palettes/DarkCultureColors.kt +34 -149
- package/dist/palettes/DarkDataVisualisationColors.kt +201 -203
- package/dist/palettes/DarkHomeColors.kt +34 -149
- package/dist/palettes/DarkIrelandColors.kt +34 -149
- package/dist/palettes/DarkLifeAndStyleColors.kt +34 -149
- package/dist/palettes/DarkMarketingColors.kt +15 -17
- package/dist/palettes/DarkMoneyColors.kt +36 -149
- package/dist/palettes/DarkObituariesColors.kt +34 -149
- package/dist/palettes/DarkPuzzlesColors.kt +32 -147
- package/dist/palettes/DarkSportColors.kt +34 -149
- package/dist/palettes/DarkTravelColors.kt +34 -149
- package/dist/palettes/DarkUkColors.kt +33 -149
- package/dist/palettes/DarkWorldColors.kt +34 -149
- package/dist/palettes/LightBrandColors.kt +165 -167
- package/dist/palettes/LightBusinessColors.kt +27 -149
- package/dist/palettes/LightChannelsColors.kt +278 -280
- package/dist/palettes/LightCommentColors.kt +27 -149
- package/dist/palettes/LightCoreColors.kt +224 -149
- package/dist/palettes/LightCultureColors.kt +27 -149
- package/dist/palettes/LightDataVisualisationColors.kt +201 -203
- package/dist/palettes/LightHomeColors.kt +26 -149
- package/dist/palettes/LightIrelandColors.kt +27 -149
- package/dist/palettes/LightLifeAndStyleColors.kt +27 -149
- package/dist/palettes/LightMarketingColors.kt +15 -17
- package/dist/palettes/LightMoneyColors.kt +27 -149
- package/dist/palettes/LightObituariesColors.kt +27 -149
- package/dist/palettes/LightPuzzlesColors.kt +25 -147
- package/dist/palettes/LightSportColors.kt +27 -149
- package/dist/palettes/LightTravelColors.kt +27 -149
- package/dist/palettes/LightUkColors.kt +27 -149
- package/dist/palettes/LightWorldColors.kt +27 -149
- package/package.json +5 -3
- package/dist/palettes/FoundationColors.kt +0 -2
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
package uk.co.thetimes.timesDesignSystem
|
|
2
|
+
|
|
3
|
+
import androidx.compose.ui.unit.dp
|
|
4
|
+
import androidx.compose.ui.unit.Dp
|
|
5
|
+
|
|
6
|
+
class TimesSpacing {
|
|
7
|
+
val spacingStatic10: Dp = 18.dp
|
|
8
|
+
val spacingStatic11: Dp = 20.dp
|
|
9
|
+
val spacingStatic12: Dp = 23.dp
|
|
10
|
+
val spacingStatic13: Dp = 24.dp
|
|
11
|
+
val spacingStatic14: Dp = 28.dp
|
|
12
|
+
val spacingStatic15: Dp = 32.dp
|
|
13
|
+
val spacingStatic16: Dp = 36.dp
|
|
14
|
+
val spacingStatic17: Dp = 40.dp
|
|
15
|
+
val spacingStatic18: Dp = 48.dp
|
|
16
|
+
val spacingStatic19: Dp = 56.dp
|
|
17
|
+
val spacingStatic20: Dp = 64.dp
|
|
18
|
+
val spacingStatic21: Dp = 80.dp
|
|
19
|
+
val spacingStatic01: Dp = 2.dp
|
|
20
|
+
val spacingStatic02: Dp = 3.dp
|
|
21
|
+
val spacingStatic03: Dp = 4.dp
|
|
22
|
+
val spacingStatic04: Dp = 6.dp
|
|
23
|
+
val spacingStatic05: Dp = 8.dp
|
|
24
|
+
val spacingStatic06: Dp = 10.dp
|
|
25
|
+
val spacingStatic07: Dp = 12.dp
|
|
26
|
+
val spacingStatic08: Dp = 14.dp
|
|
27
|
+
val spacingStatic09: Dp = 16.dp
|
|
28
|
+
}
|