@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.
Files changed (46) hide show
  1. package/dist/TimesSpacing.kt +28 -0
  2. package/dist/TimesTypography.kt +563 -872
  3. package/dist/index.js +1 -0
  4. package/dist/interfaces/TDSBrandColors.kt +172 -0
  5. package/dist/interfaces/TDSChannelsColors.kt +285 -0
  6. package/dist/interfaces/TDSColors.kt +229 -0
  7. package/dist/interfaces/TDSDataVisualisationColors.kt +208 -0
  8. package/dist/interfaces/TDSMarketingColors.kt +22 -0
  9. package/dist/palettes/DarkBrandColors.kt +165 -167
  10. package/dist/palettes/DarkBusinessColors.kt +34 -149
  11. package/dist/palettes/DarkChannelsColors.kt +278 -280
  12. package/dist/palettes/DarkCommentColors.kt +34 -149
  13. package/dist/palettes/DarkCoreColors.kt +228 -149
  14. package/dist/palettes/DarkCultureColors.kt +34 -149
  15. package/dist/palettes/DarkDataVisualisationColors.kt +201 -203
  16. package/dist/palettes/DarkHomeColors.kt +34 -149
  17. package/dist/palettes/DarkIrelandColors.kt +34 -149
  18. package/dist/palettes/DarkLifeAndStyleColors.kt +34 -149
  19. package/dist/palettes/DarkMarketingColors.kt +15 -17
  20. package/dist/palettes/DarkMoneyColors.kt +36 -149
  21. package/dist/palettes/DarkObituariesColors.kt +34 -149
  22. package/dist/palettes/DarkPuzzlesColors.kt +32 -147
  23. package/dist/palettes/DarkSportColors.kt +34 -149
  24. package/dist/palettes/DarkTravelColors.kt +34 -149
  25. package/dist/palettes/DarkUkColors.kt +33 -149
  26. package/dist/palettes/DarkWorldColors.kt +34 -149
  27. package/dist/palettes/LightBrandColors.kt +165 -167
  28. package/dist/palettes/LightBusinessColors.kt +27 -149
  29. package/dist/palettes/LightChannelsColors.kt +278 -280
  30. package/dist/palettes/LightCommentColors.kt +27 -149
  31. package/dist/palettes/LightCoreColors.kt +224 -149
  32. package/dist/palettes/LightCultureColors.kt +27 -149
  33. package/dist/palettes/LightDataVisualisationColors.kt +201 -203
  34. package/dist/palettes/LightHomeColors.kt +26 -149
  35. package/dist/palettes/LightIrelandColors.kt +27 -149
  36. package/dist/palettes/LightLifeAndStyleColors.kt +27 -149
  37. package/dist/palettes/LightMarketingColors.kt +15 -17
  38. package/dist/palettes/LightMoneyColors.kt +27 -149
  39. package/dist/palettes/LightObituariesColors.kt +27 -149
  40. package/dist/palettes/LightPuzzlesColors.kt +25 -147
  41. package/dist/palettes/LightSportColors.kt +27 -149
  42. package/dist/palettes/LightTravelColors.kt +27 -149
  43. package/dist/palettes/LightUkColors.kt +27 -149
  44. package/dist/palettes/LightWorldColors.kt +27 -149
  45. package/package.json +5 -3
  46. 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
+ }