@marioschmidt/design-system-tokens 1.0.11 → 1.0.13

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 (92) hide show
  1. package/dist/android/res/values/base/primitive_color_value.xml +101 -0
  2. package/dist/android/res/values/base/primitive_font_value.xml +50 -0
  3. package/dist/android/res/values/base/primitive_size_value.xml +56 -0
  4. package/dist/android/res/values/base/primitive_space_value.xml +32 -0
  5. package/dist/android/res/values/density/density_compact.xml +15 -0
  6. package/dist/android/res/values/density/density_default.xml +15 -0
  7. package/dist/android/res/values/density/density_spacious.xml +15 -0
  8. package/dist/android/res/values/mapping/brand_advertorial.xml +278 -0
  9. package/dist/android/res/values/mapping/brand_bild.xml +278 -0
  10. package/dist/android/res/values/mapping/brand_color_bild.xml +75 -0
  11. package/dist/android/res/values/mapping/brand_color_sportbild.xml +75 -0
  12. package/dist/android/res/values/mapping/brand_sportbild.xml +278 -0
  13. package/dist/android/res/values/semantic/advertorial/breakpoints/breakpoint_advertorial_lg.xml +473 -0
  14. package/dist/android/res/values/semantic/advertorial/breakpoints/breakpoint_advertorial_md.xml +473 -0
  15. package/dist/android/res/values/semantic/advertorial/breakpoints/breakpoint_advertorial_sm.xml +473 -0
  16. package/dist/android/res/values/semantic/advertorial/breakpoints/breakpoint_advertorial_xs.xml +473 -0
  17. package/dist/android/res/values/semantic/advertorial/color/color_advertorial_dark.xml +271 -0
  18. package/dist/android/res/values/semantic/advertorial/color/color_advertorial_light.xml +271 -0
  19. package/dist/android/res/values/semantic/bild/breakpoints/breakpoint_bild_lg.xml +473 -0
  20. package/dist/android/res/values/semantic/bild/breakpoints/breakpoint_bild_md.xml +473 -0
  21. package/dist/android/res/values/semantic/bild/breakpoints/breakpoint_bild_sm.xml +473 -0
  22. package/dist/android/res/values/semantic/bild/breakpoints/breakpoint_bild_xs.xml +473 -0
  23. package/dist/android/res/values/semantic/bild/color/color_bild_dark.xml +271 -0
  24. package/dist/android/res/values/semantic/bild/color/color_bild_light.xml +271 -0
  25. package/dist/android/res/values/semantic/sportbild/breakpoints/breakpoint_sportbild_lg.xml +473 -0
  26. package/dist/android/res/values/semantic/sportbild/breakpoints/breakpoint_sportbild_md.xml +473 -0
  27. package/dist/android/res/values/semantic/sportbild/breakpoints/breakpoint_sportbild_sm.xml +473 -0
  28. package/dist/android/res/values/semantic/sportbild/breakpoints/breakpoint_sportbild_xs.xml +473 -0
  29. package/dist/android/res/values/semantic/sportbild/color/color_sportbild_dark.xml +271 -0
  30. package/dist/android/res/values/semantic/sportbild/color/color_sportbild_light.xml +271 -0
  31. package/dist/flutter/base/primitive_color_value.dart +109 -0
  32. package/dist/flutter/base/primitive_font_value.dart +58 -0
  33. package/dist/flutter/base/primitive_size_value.dart +64 -0
  34. package/dist/flutter/base/primitive_space_value.dart +40 -0
  35. package/dist/flutter/density/density_compact.dart +23 -0
  36. package/dist/flutter/density/density_default.dart +23 -0
  37. package/dist/flutter/density/density_spacious.dart +23 -0
  38. package/dist/flutter/mapping/brand_advertorial.dart +286 -0
  39. package/dist/flutter/mapping/brand_bild.dart +286 -0
  40. package/dist/flutter/mapping/brand_color_bild.dart +83 -0
  41. package/dist/flutter/mapping/brand_color_sportbild.dart +83 -0
  42. package/dist/flutter/mapping/brand_sportbild.dart +286 -0
  43. package/dist/flutter/semantic/advertorial/breakpoints/breakpoint_advertorial_lg.dart +499 -0
  44. package/dist/flutter/semantic/advertorial/breakpoints/breakpoint_advertorial_md.dart +499 -0
  45. package/dist/flutter/semantic/advertorial/breakpoints/breakpoint_advertorial_sm.dart +499 -0
  46. package/dist/flutter/semantic/advertorial/breakpoints/breakpoint_advertorial_xs.dart +499 -0
  47. package/dist/flutter/semantic/advertorial/color/color_advertorial_dark.dart +435 -0
  48. package/dist/flutter/semantic/advertorial/color/color_advertorial_light.dart +435 -0
  49. package/dist/flutter/semantic/bild/breakpoints/breakpoint_bild_lg.dart +499 -0
  50. package/dist/flutter/semantic/bild/breakpoints/breakpoint_bild_md.dart +499 -0
  51. package/dist/flutter/semantic/bild/breakpoints/breakpoint_bild_sm.dart +499 -0
  52. package/dist/flutter/semantic/bild/breakpoints/breakpoint_bild_xs.dart +499 -0
  53. package/dist/flutter/semantic/bild/color/color_bild_dark.dart +435 -0
  54. package/dist/flutter/semantic/bild/color/color_bild_light.dart +435 -0
  55. package/dist/flutter/semantic/sportbild/breakpoints/breakpoint_sportbild_lg.dart +499 -0
  56. package/dist/flutter/semantic/sportbild/breakpoints/breakpoint_sportbild_md.dart +499 -0
  57. package/dist/flutter/semantic/sportbild/breakpoints/breakpoint_sportbild_sm.dart +499 -0
  58. package/dist/flutter/semantic/sportbild/breakpoints/breakpoint_sportbild_xs.dart +499 -0
  59. package/dist/flutter/semantic/sportbild/color/color_sportbild_dark.dart +435 -0
  60. package/dist/flutter/semantic/sportbild/color/color_sportbild_light.dart +435 -0
  61. package/dist/ios/base/PrimitiveColorValue.swift +106 -0
  62. package/dist/ios/base/PrimitiveFontValue.swift +55 -0
  63. package/dist/ios/base/PrimitiveSizeValue.swift +61 -0
  64. package/dist/ios/base/PrimitiveSpaceValue.swift +37 -0
  65. package/dist/ios/density/DensityCompact.swift +20 -0
  66. package/dist/ios/density/DensityDefault.swift +20 -0
  67. package/dist/ios/density/DensitySpacious.swift +20 -0
  68. package/dist/ios/mapping/BrandAdvertorial.swift +283 -0
  69. package/dist/ios/mapping/BrandBild.swift +283 -0
  70. package/dist/ios/mapping/BrandColorBild.swift +80 -0
  71. package/dist/ios/mapping/BrandColorSportbild.swift +80 -0
  72. package/dist/ios/mapping/BrandSportbild.swift +283 -0
  73. package/dist/ios/semantic/advertorial/breakpoints/BreakpointAdvertorialLg.swift +496 -0
  74. package/dist/ios/semantic/advertorial/breakpoints/BreakpointAdvertorialMd.swift +496 -0
  75. package/dist/ios/semantic/advertorial/breakpoints/BreakpointAdvertorialSm.swift +496 -0
  76. package/dist/ios/semantic/advertorial/breakpoints/BreakpointAdvertorialXs.swift +496 -0
  77. package/dist/ios/semantic/advertorial/color/ColorAdvertorialDark.swift +432 -0
  78. package/dist/ios/semantic/advertorial/color/ColorAdvertorialLight.swift +432 -0
  79. package/dist/ios/semantic/bild/breakpoints/BreakpointBildLg.swift +496 -0
  80. package/dist/ios/semantic/bild/breakpoints/BreakpointBildMd.swift +496 -0
  81. package/dist/ios/semantic/bild/breakpoints/BreakpointBildSm.swift +496 -0
  82. package/dist/ios/semantic/bild/breakpoints/BreakpointBildXs.swift +496 -0
  83. package/dist/ios/semantic/bild/color/ColorBildDark.swift +432 -0
  84. package/dist/ios/semantic/bild/color/ColorBildLight.swift +432 -0
  85. package/dist/ios/semantic/sportbild/breakpoints/BreakpointSportbildLg.swift +496 -0
  86. package/dist/ios/semantic/sportbild/breakpoints/BreakpointSportbildMd.swift +496 -0
  87. package/dist/ios/semantic/sportbild/breakpoints/BreakpointSportbildSm.swift +496 -0
  88. package/dist/ios/semantic/sportbild/breakpoints/BreakpointSportbildXs.swift +496 -0
  89. package/dist/ios/semantic/sportbild/color/ColorSportbildDark.swift +432 -0
  90. package/dist/ios/semantic/sportbild/color/ColorSportbildLight.swift +432 -0
  91. package/dist/manifest.json +87 -3
  92. package/package.json +1 -1
@@ -0,0 +1,61 @@
1
+
2
+ //
3
+ // PrimitiveSizeValue.swift
4
+ //
5
+
6
+ // Do not edit directly, this file was auto-generated.
7
+
8
+
9
+ import UIKit
10
+
11
+ public class {
12
+ public static let size0125x = 1
13
+ public static let size025x = 2
14
+ public static let size05x = 4
15
+ public static let size075x = 6
16
+ public static let size0x = 0
17
+ public static let size100x = 800
18
+ public static let size10x = 80
19
+ public static let size115x = 92
20
+ public static let size11625x = 930
21
+ public static let size124x = 992
22
+ public static let size125x = 100
23
+ public static let size125x = 10
24
+ public static let size128x = 1024
25
+ public static let size12x = 96
26
+ public static let size15x = 120
27
+ public static let size15x = 12
28
+ public static let size1625 = 130
29
+ public static let size168x = 1344
30
+ public static let size175x = 140
31
+ public static let size175x = 14
32
+ public static let size185x = 148
33
+ public static let size1x = 8
34
+ public static let size20x = 160
35
+ public static let size225x = 180
36
+ public static let size225x = 18
37
+ public static let size25x = 200
38
+ public static let size25x = 20
39
+ public static let size275x = 220
40
+ public static let size275x = 22
41
+ public static let size2x = 16
42
+ public static let size30x = 240
43
+ public static let size325x = 26
44
+ public static let size35x = 280
45
+ public static let size35x = 28
46
+ public static let size375x = 30
47
+ public static let size3x = 24
48
+ public static let size40x = 320
49
+ public static let size45x = 36
50
+ public static let size4x = 32
51
+ public static let size50x = 400
52
+ public static let size525x = 42
53
+ public static let size5x = 40
54
+ public static let size60x = 480
55
+ public static let size6x = 48
56
+ public static let size7x = 56
57
+ public static let size80x = 640
58
+ public static let size875x = 700
59
+ public static let size8x = 64
60
+ public static let size9x = 72
61
+ }
@@ -0,0 +1,37 @@
1
+
2
+ //
3
+ // PrimitiveSpaceValue.swift
4
+ //
5
+
6
+ // Do not edit directly, this file was auto-generated.
7
+
8
+
9
+ import UIKit
10
+
11
+ public class {
12
+ public static let space025x = 2
13
+ public static let space025x = -2
14
+ public static let space05x = 4
15
+ public static let space075x = 6
16
+ public static let space0x = 0
17
+ public static let space10x = 80
18
+ public static let space125x = 10
19
+ public static let space12x = 96
20
+ public static let space15x = 12
21
+ public static let space175x = 14
22
+ public static let space1x = 8
23
+ public static let space20x = 160
24
+ public static let space25x = 20
25
+ public static let space275x = 22
26
+ public static let space2x = 16
27
+ public static let space35x = 28
28
+ public static let space3x = 24
29
+ public static let space45x = 36
30
+ public static let space4x = 32
31
+ public static let space5x = 40
32
+ public static let space6x = 48
33
+ public static let space75x = 60
34
+ public static let space85x = 68
35
+ public static let space8x = 64
36
+ public static let space9x = 72
37
+ }
@@ -0,0 +1,20 @@
1
+
2
+ //
3
+ // DensityCompact.swift
4
+ //
5
+
6
+ // Do not edit directly, this file was auto-generated.
7
+
8
+
9
+ import UIKit
10
+
11
+ public class {
12
+ public static let componentButtonButtonContentGapSpace = 6 /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling space could work across different content scaling / size / contrast themes. */
13
+ public static let componentButtonButtonInlineSpace = 16 /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling space could work across different content scaling / size / contrast themes. */
14
+ public static let componentButtonButtonLabelFontSize = 15 /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling size could work across different content scaling / size / contrast themes. Font size across devices: 15 - 17 - 19 */
15
+ public static let componentButtonButtonStackSpace = 6 /** This variable is in the SpaceScaling collection. It was made to experiment with how scaling space could work across different content scaling / size / contrast themes. */
16
+ public static let componentInputfieldInputFieldHeightSize = 36
17
+ public static let componentInputfieldInputFieldInlineSpace = 16
18
+ public static let componentInputfieldInputFieldLabelFontSize = 16 /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling size could work across different content scaling / size / contrast themes. Font size across scaling options: compact 15 - default 17 - spacious 19 */
19
+ public static let componentInputfieldInputFieldStackSpace = 6
20
+ }
@@ -0,0 +1,20 @@
1
+
2
+ //
3
+ // DensityDefault.swift
4
+ //
5
+
6
+ // Do not edit directly, this file was auto-generated.
7
+
8
+
9
+ import UIKit
10
+
11
+ public class {
12
+ public static let componentButtonButtonContentGapSpace = 8 /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling space could work across different content scaling / size / contrast themes. */
13
+ public static let componentButtonButtonInlineSpace = 20 /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling space could work across different content scaling / size / contrast themes. */
14
+ public static let componentButtonButtonLabelFontSize = 17 /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling size could work across different content scaling / size / contrast themes. Font size across devices: 15 - 17 - 19 */
15
+ public static let componentButtonButtonStackSpace = 8 /** This variable is in the SpaceScaling collection. It was made to experiment with how scaling space could work across different content scaling / size / contrast themes. */
16
+ public static let componentInputfieldInputFieldHeightSize = 40
17
+ public static let componentInputfieldInputFieldInlineSpace = 16
18
+ public static let componentInputfieldInputFieldLabelFontSize = 17 /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling size could work across different content scaling / size / contrast themes. Font size across scaling options: compact 15 - default 17 - spacious 19 */
19
+ public static let componentInputfieldInputFieldStackSpace = 8
20
+ }
@@ -0,0 +1,20 @@
1
+
2
+ //
3
+ // DensitySpacious.swift
4
+ //
5
+
6
+ // Do not edit directly, this file was auto-generated.
7
+
8
+
9
+ import UIKit
10
+
11
+ public class {
12
+ public static let componentButtonButtonContentGapSpace = 8 /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling space could work across different content scaling / size / contrast themes. */
13
+ public static let componentButtonButtonInlineSpace = 24 /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling space could work across different content scaling / size / contrast themes. */
14
+ public static let componentButtonButtonLabelFontSize = 19 /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling size could work across different content scaling / size / contrast themes. Font size across devices: 15 - 17 - 19 */
15
+ public static let componentButtonButtonStackSpace = 12 /** This variable is in the SpaceScaling collection. It was made to experiment with how scaling space could work across different content scaling / size / contrast themes. */
16
+ public static let componentInputfieldInputFieldHeightSize = 48
17
+ public static let componentInputfieldInputFieldInlineSpace = 16
18
+ public static let componentInputfieldInputFieldLabelFontSize = 19 /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling size could work across different content scaling / size / contrast themes. Font size across scaling options: compact 15 - default 17 - spacious 19 */
19
+ public static let componentInputfieldInputFieldStackSpace = 12
20
+ }
@@ -0,0 +1,283 @@
1
+
2
+ //
3
+ // BrandAdvertorial.swift
4
+ //
5
+
6
+ // Do not edit directly, this file was auto-generated.
7
+
8
+
9
+ import UIKit
10
+
11
+ public class {
12
+ public static let brandName = Advertorial
13
+ public static let componentAccordionAccordionLabelFontFamily = Lucida Grande
14
+ public static let componentArticleFontSizeArticleImageCaptionFontSizeLg = 16 /** --article-figure-caption-font-size-lg */
15
+ public static let componentArticleFontSizeArticleImageCaptionFontSizeMd = 13 /** --article-figure-caption-font-size-md */
16
+ public static let componentArticleFontSizeArticleImageCaptionFontSizeSm = 13 /** --article-figure-caption-font-size-sm */
17
+ public static let componentArticleFontSizeArticleImageCaptionFontSizeXs = 13 /** --article-figure-caption-font-size-sm */
18
+ public static let componentArticleFontSizeArticleImageSourceFontSizeLg = 16 /** --article-figure-meta-font-size-lg */
19
+ public static let componentArticleFontSizeArticleImageSourceFontSizeMd = 13 /** --article-figure-meta-font-size-sm */
20
+ public static let componentArticleFontSizeArticleImageSourceFontSizeSm = 13 /** --article-figure-meta-font-size-sm */
21
+ public static let componentArticleFontSizeArticleImageSourceFontSizeXs = 13 /** --article-figure-meta-font-size-sm */
22
+ public static let componentArticleLineHeightArticleImageCaptionLineHeightLg = 24 /** --article-figure-caption-line-height-lg ; Bild: 24.75 // SpoBi: 19.5 // Ad: 24 */
23
+ public static let componentArticleLineHeightArticleImageCaptionLineHeightMd = 19.5 /** --article-figure-caption-line-height-md ; Bild: 24.75 // SpoBi: 16.9 // Ad: 19.5 */
24
+ public static let componentArticleLineHeightArticleImageCaptionLineHeightSm = 19.5 /** --article-figure-caption-line-height-sm ; Bild: 19.5 // SpoBi: 16.9 // Ad: 19.5 */
25
+ public static let componentArticleLineHeightArticleImageCaptionLineHeightXs = 19.5 /** --article-figure-caption-line-height-sm ; Bild: 19.5 // SpoBi: 16.9 // Ad: 19.5 */
26
+ public static let componentArticleLineHeightArticleImageSourceLineHeightLg = 24 /** --article-figure-meta-line-height-lg ; Bild: 23 // SpoBi: 19 // Ad: 24 */
27
+ public static let componentArticleLineHeightArticleImageSourceLineHeightMd = 19 /** --article-figure-meta-line-height-sm ; Bild: 21 // SpoBi: 17 // Ad: 19 */
28
+ public static let componentArticleLineHeightArticleImageSourceLineHeightSm = 19 /** --article-figure-meta-line-height-sm ; Bild: 21 // SpoBi: 17 // Ad: 19 */
29
+ public static let componentArticleLineHeightArticleImageSourceLineHeightXs = 19 /** --article-figure-meta-line-height-sm ; Bild: 21 // SpoBi: 17 // Ad: 19 */
30
+ public static let componentAvatarAvatarFontFamily = Lucida Grande /** current css 09-2025 --article-author-font // Bild: GothamXNarrow; SpoBi: Inter; Ads: LucidaGrande */
31
+ public static let componentAvatarAvatarFontSizeLg = 15 /** 09-2025 css using footnote var for font sizes SM & LG // Bild: 18; SpoBi: 15; Ads: 15 */
32
+ public static let componentAvatarAvatarFontSizeSm = 13 /** 09-2025 css using footnote var for font sizes SM & LG // Bild: 16; SpoBi: 13; Ads: 13 */
33
+ public static let componentBreadcrumbFontFamilyBreadcrumbFontFamily = Lucida Grande /** --breadcrumb-font */
34
+ public static let componentBreadcrumbFontSizeBreadcrumbFontSizeLg = 12 /** --breadcrumb-font-size-lg */
35
+ public static let componentBreadcrumbFontSizeBreadcrumbFontSizeMd = 15 /** --breadcrumb-font-size-sm */
36
+ public static let componentBreadcrumbFontSizeBreadcrumbFontSizeSm = 15 /** --breadcrumb-font-size-sm */
37
+ public static let componentBreadcrumbFontSizeBreadcrumbFontSizeXs = 15 /** --breadcrumb-font-size-sm */
38
+ public static let componentBreadcrumbFontWeightBreadcrumbFontWeight = 700 /** --breadcrumb-font-size-sm */
39
+ public static let componentBreadcrumbLineHeightBreadcrumbLineHeightLg = 12 /** not defined as variable */
40
+ public static let componentBreadcrumbLineHeightBreadcrumbLineHeightMd = 15 /** not defined as variable */
41
+ public static let componentBreadcrumbLineHeightBreadcrumbLineHeightSm = 15 /** not defined as variable */
42
+ public static let componentBreadcrumbLineHeightBreadcrumbLineHeightXs = 15 /** not defined as variable */
43
+ public static let componentBreakingNewsBreakingNewsContentFontSize = 21
44
+ public static let componentButtonLabelFontWeightSt = 600
45
+ public static let componentFooterFooterLinkFontFamily = Gotham XNarrow
46
+ public static let componentInputfieldInputFieldLabelFontFamily = Lucida Grande
47
+ public static let componentMediaPlayerVideoTimeBadgeFontFamily = Lucida Grande
48
+ public static let componentMenuAppTopBarTitleFontSizeLg = 14 /** --caption-1-font-size-lg */
49
+ public static let componentMenuAppTopBarTitleFontSizeMd = 14 /** --caption-1-font-size-md */
50
+ public static let componentMenuAppTopBarTitleFontSizeSm = 12 /** --caption-1-font-size-sm */
51
+ public static let componentMenuAppTopBarTitleFontSizeXs = 12 /** --caption-1-font-size-sm */
52
+ public static let componentMenuAppTopBarTitleLineHeightLg = 17
53
+ public static let componentMenuAppTopBarTitleLineHeightMd = 17
54
+ public static let componentMenuAppTopBarTitleLineHeightSm = 14
55
+ public static let componentMenuAppTopBarTitleLineHeightXs = 14
56
+ public static let componentMenuMenuItemFontSize = 15 /** --nav-btn-font-size */
57
+ public static let componentMenuMenuItemFontWeight = 700
58
+ public static let componentTeaser2xaTeaser2xaTeaserTitleInlineSpace = 8
59
+ public static let componentTeaserATeaserATeaserTitleInlineSpaceLg = 12
60
+ public static let componentTeaserATeaserATeaserTitleInlineSpaceMd = 12
61
+ public static let componentTeaserATeaserATeaserTitleInlineSpaceSm = 8
62
+ public static let componentTeaserATeaserATeaserTitleInlineSpaceXs = 8
63
+ public static let componentTeaserBTeaserBTeaserTitleInlineSpace = 8
64
+ public static let componentTeaserMiniQMiniQTeaserTitleInlineSpaceLg = 8
65
+ public static let componentTeaserMiniQMiniQTeaserTitleInlineSpaceMd = 8
66
+ public static let componentTeaserMiniQMiniQTeaserTitleInlineSpaceSm = 8
67
+ public static let componentTeaserMiniQMiniQTeaserTitleInlineSpaceXs = 8
68
+ public static let componentTeaserQuadQTeaserTitleInlineSpaceLg = 12
69
+ public static let componentTeaserQuadQTeaserTitleInlineSpaceMd = 16
70
+ public static let componentTeaserQuadQTeaserTitleInlineSpaceSm = 8
71
+ public static let componentTeaserQuadQTeaserTitleInlineSpaceXs = 8
72
+ public static let componentTeaserSuperASuperAteaserTitleInlineSpace = 16
73
+ public static let componentTeaserTeaserTitleInlineSpaceLg = 12 /** --teaser-title-padding-lg */
74
+ public static let componentTeaserTeaserTitleInlineSpaceMd = 12 /** --teaser-title-padding-md */
75
+ public static let componentTeaserTeaserTitleInlineSpaceSm = 8 /** --teaser-title-padding-sm */
76
+ public static let componentTeaserTeaserTitleInlineSpaceXs = 8 /** --teaser-title-padding-xs */
77
+ public static let globalTypographyFontFamilyBodyFontFamily = Lucida Grande /** Bild: GothamXNarrow | SpoBi: Inter | Ads: LucidaGrande | This variable is used in the body text style font family parameter. */
78
+ public static let globalTypographyFontFamilyCalloutFontFamily = Lucida Grande /** Bild: Gotham | SpoBi: AntennaCond | Ads: LucidaGrande | This variable is used in the callouts text style font family parameter. */
79
+ public static let globalTypographyFontFamilyDisplayFontFamily = Lucida Grande /** Bild: Gotham | SpoBi: AntennaCond | Ads: LucidaGrande | This variable is used in the display text style font family parameter. */
80
+ public static let globalTypographyFontFamilyFootnoteFontFamily = Lucida Grande /** Bild: GothamXNarrow | SpoBi: Inter | Ads: LucidaGrande | This variable is used in the footnotes text style font family parameter. */
81
+ public static let globalTypographyFontFamilyHeadlineFontFamily = Lucida Grande /** Bild: GothamCond | SpoBi: AntennaExtraCond | Ads: LucidaGrande | This variable is used in the headlines text style font family parameter. */
82
+ public static let globalTypographyFontFamilyKickerFontFamily = Lucida Grande /** Bild: GothamXNarrow | SpoBi: AntennaExtraCond | Ads: LucidaGrande | This variable is used in the kickers text styles font family parameter. */
83
+ public static let globalTypographyFontFamilyLabelFontFamily = Lucida Grande /** Bild: GothamXNarrow | SpoBi: AntennaExtraCond | Ads: LucidaGrande | This variable is used in the labels text styles font family parameter. */
84
+ public static let globalTypographyFontFamilyQuoteFontFamily = Lucida Grande /** Bild: Gotham | SpoBi: AntennaCond | Ads: LucidaGrande | This variable is used in the quotes text style font family parameter. */
85
+ public static let globalTypographyFontFamilySubheadlineFontFamily = Lucida Grande /** Bild: GothamCond | SpoBi: AntennaCond | Ads: LucidaGrande | This variable is used in the subheadlines text style font family parameter. */
86
+ public static let globalTypographyFontFamilyTitleFontFamily = Lucida Grande /** Bild: Gotham | SpoBi: AntennaCond | Ads: LucidaGrande | This variable is used in the titles text style font family parameter. */
87
+ public static let globalTypographyFontSizeBodyBodyFontSizeLg = 17 /** Bild: 21 | SpoBi: 17 | Ads: 17 | This variable is used in the body text style font size parameter for large device sizes. Current online css: --body-font-size */
88
+ public static let globalTypographyFontSizeBodyBodyFontSizeMd = 17 /** Bild: 21 | SpoBi: 17 | Ads: 17 | This variable is used in the body text style font size parameter for medium device sizes. Current online css: --body-font-size */
89
+ public static let globalTypographyFontSizeBodyBodyFontSizeSm = 17 /** Bild: 21 | SpoBi: 17 | Ads: 17 | This variable is used in the body text style font size parameter for small device sizes. Current online css: --body-font-size */
90
+ public static let globalTypographyFontSizeBodyBodyFontSizeXs = 17 /** Bild: 21 | SpoBi: 17 | Ads: 17 | This variable is used in the body text style font size parameter for small device sizes. Current online css: --body-font-size */
91
+ public static let globalTypographyFontSizeCalloutCallout1FontSizeLg = 22 /** Bild: 22 | SpoBi: 24 | Ads: 22 | This variable is used in the callout1 text style font size parameter for large device sizes. Current online css: */
92
+ public static let globalTypographyFontSizeCalloutCallout1FontSizeMd = 22 /** Bild: 22 | SpoBi: 24 | Ads: 22 | This variable is used in the callout1 text style font size parameter for medium device sizes. Current online css: */
93
+ public static let globalTypographyFontSizeCalloutCallout1FontSizeSm = 16 /** Bild: 18 | SpoBi: 18 | Ads: 16 | This variable is used in the callout1 text style font size parameter for small device sizes. Current online css: */
94
+ public static let globalTypographyFontSizeCalloutCallout1FontSizeXs = 16 /** Bild: 18 | SpoBi: 18 | Ads: 16 | This variable is used in the callout1 text style font size parameter for small device sizes. Current online css: */
95
+ public static let globalTypographyFontSizeDisplayDisplay1FontSizeLg = 116 /** Bild: 120 | SpoBi: 114 | Ads: 116 | This variable is used in the display1 text style font size parameter for large device sizes. */
96
+ public static let globalTypographyFontSizeDisplayDisplay1FontSizeMd = 70 /** Bild: 72 | SpoBi: 68 | Ads: 70 | This variable is used in the display1 text style font size parameter for medium device sizes. */
97
+ public static let globalTypographyFontSizeDisplayDisplay1FontSizeSm = 39 /** Bild: 40 | SpoBi: 38 | Ads: 39 | This variable is used in the display1 text style font size parameter for small device sizes. */
98
+ public static let globalTypographyFontSizeDisplayDisplay1FontSizeXs = 39 /** Bild: 40 | SpoBi: 38 | Ads: 39 | This variable is used in the display1 text style font size parameter for small device sizes. */
99
+ public static let globalTypographyFontSizeDisplayDisplay2FontSizeLg = 62 /** Bild: 64 | SpoBi: 61 | Ads: 62 | This variable is used in the display2 text style font size parameter for large device sizes. */
100
+ public static let globalTypographyFontSizeDisplayDisplay2FontSizeMd = 41 /** Bild: 42 | SpoBi: 40 | Ads: 41 | This variable is used in the display2 text style font size parameter for medium device sizes. */
101
+ public static let globalTypographyFontSizeDisplayDisplay2FontSizeSm = 35 /** Bild: 36 | SpoBi: 34 | Ads: 35 | This variable is used in the display2 text style font size parameter for small device sizes. */
102
+ public static let globalTypographyFontSizeDisplayDisplay2FontSizeXs = 35 /** Bild: 36 | SpoBi: 34 | Ads: 35 | This variable is used in the display2 text style font size parameter for small device sizes. */
103
+ public static let globalTypographyFontSizeDisplayDisplay3FontSizeLg = 39 /** Bild: 40 | SpoBi: 38 | Ads: 39 | This variable is used in the display3 text style font size parameter for large device sizes. */
104
+ public static let globalTypographyFontSizeDisplayDisplay3FontSizeMd = 31 /** Bild: 32 | SpoBi: 30 | Ads: 31 | This variable is used in the display3 text style font size parameter for medium device sizes. */
105
+ public static let globalTypographyFontSizeDisplayDisplay3FontSizeSm = 27 /** Bild: 28 | SpoBi: 27 | Ads: 27 | This variable is used in the display3 text style font size parameter for small device sizes. */
106
+ public static let globalTypographyFontSizeDisplayDisplay3FontSizeXs = 27 /** Bild: 28 | SpoBi: 27 | Ads: 27 | This variable is used in the display3 text style font size parameter for small device sizes. */
107
+ public static let globalTypographyFontSizeFootnoteFootnote1FontSizeLg = 15 /** --footnote-font-size-lg */
108
+ public static let globalTypographyFontSizeFootnoteFootnote1FontSizeMd = 13
109
+ public static let globalTypographyFontSizeFootnoteFootnote1FontSizeSm = 13 /** --footnote-font-size-sm */
110
+ public static let globalTypographyFontSizeFootnoteFootnote1FontSizeXs = 13 /** --footnote-font-size-sm */
111
+ public static let globalTypographyFontSizeFootnoteFootnote2FontSizeLg = 13
112
+ public static let globalTypographyFontSizeFootnoteFootnote2FontSizeMd = 10
113
+ public static let globalTypographyFontSizeFootnoteFootnote2FontSizeSm = 10
114
+ public static let globalTypographyFontSizeFootnoteFootnote2FontSizeXs = 10
115
+ public static let globalTypographyFontSizeHeadlineHeadline1FontSizeLg = 70 /** Bild: 100 | SpoBi: 80 | Ads: 70 | This variable is used in the headline1 text style font size parameter for large device sizes. */
116
+ public static let globalTypographyFontSizeHeadlineHeadline1FontSizeMd = 54 /** Bild: 72 | SpoBi: 60 | Ads: 54 | This variable is used in the headline1 text style font size parameter for medium device sizes. */
117
+ public static let globalTypographyFontSizeHeadlineHeadline1FontSizeSm = 36 /** Bild: 48 | SpoBi: 42 | Ads: 36 | This variable is used in the headline1 text style font size parameter for small device sizes. */
118
+ public static let globalTypographyFontSizeHeadlineHeadline1FontSizeXs = 36 /** Bild: 48 | SpoBi: 42 | Ads: 36 | This variable is used in the headline1 text style font size parameter for small device sizes. */
119
+ public static let globalTypographyFontSizeHeadlineHeadline2FontSizeLg = 48 /** Bild: 64 | SpoBi: 50 | Ads: 48 | This variable is used in the headline2 text style font size parameter for large device sizes. */
120
+ public static let globalTypographyFontSizeHeadlineHeadline2FontSizeMd = 36 /** Bild: 48 | SpoBi: 44 | Ads: 36 | This variable is used in the headline2 text style font size parameter for medium device sizes. */
121
+ public static let globalTypographyFontSizeHeadlineHeadline2FontSizeSm = 30 /** Bild: 40 | SpoBi: 42 | Ads: 30 | This variable is used in the headline2 text style font size parameter for small device sizes. */
122
+ public static let globalTypographyFontSizeHeadlineHeadline2FontSizeXs = 30 /** Bild: 40 | SpoBi: 42 | Ads: 30 | This variable is used in the headline2 text style font size parameter for small device sizes. */
123
+ public static let globalTypographyFontSizeHeadlineHeadline3FontSizeLg = 32 /** Bild: 40 | SpoBi: 34 | Ads: 32 | This variable is used in the headline3 text style font size parameter for large device sizes. */
124
+ public static let globalTypographyFontSizeHeadlineHeadline3FontSizeMd = 26 /** Bild: 36 | SpoBi: 30 | Ads: 26 | This variable is used in the headline3 text style font size parameter for medium device sizes. */
125
+ public static let globalTypographyFontSizeHeadlineHeadline3FontSizeSm = 24 /** Bild: 28 | SpoBi: 30 | Ads: 24 | This variable is used in the headline3 text style font size parameter for small device sizes. */
126
+ public static let globalTypographyFontSizeHeadlineHeadline3FontSizeXs = 24 /** Bild: 28 | SpoBi: 30 | Ads: 24 | This variable is used in the headline3 text style font size parameter for small device sizes. */
127
+ public static let globalTypographyFontSizeHeadlineHeadline4FontSizeLg = 22 /** Bild: 32 | SpoBi: 26 | Ads: 22 | This variable is used in the headline4 text style font size parameter for large device sizes. */
128
+ public static let globalTypographyFontSizeHeadlineHeadline4FontSizeMd = 20 /** Bild: 26 | SpoBi: 26 | Ads: 20 | This variable is used in the headline4 text style font size parameter for medium device sizes. */
129
+ public static let globalTypographyFontSizeHeadlineHeadline4FontSizeSm = 16 /** Bild: 22 | SpoBi: 21 | Ads: 16 | This variable is used in the headline4 text style font size parameter for small device sizes. */
130
+ public static let globalTypographyFontSizeHeadlineHeadline4FontSizeXs = 16 /** Bild: 22 | SpoBi: 21 | Ads: 16 | This variable is used in the headline4 text style font size parameter for small device sizes. */
131
+ public static let globalTypographyFontSizeHeadlineHeadlineTextAlign = center /** This variable is used for controlling the alignment of headlines across brands. current online css example var: --headline-text-align-lg */
132
+ public static let globalTypographyFontSizeKickerKicker1FontSizeLg = 25 /** Bild: 30 | SpoBi: 32 | Ads: 25 | This variable is used in the kicker1 text style font size parameter for large device sizes. Current online css: --kicker-0-font-size-lg */
133
+ public static let globalTypographyFontSizeKickerKicker1FontSizeMd = 18 /** Bild: 22 | SpoBi: 26 | Ads: 18 | This variable is used in the kicker1 text style font size parameter for medium device sizes. Current online css: --kicker-0-font-size-md */
134
+ public static let globalTypographyFontSizeKickerKicker1FontSizeSm = 16 /** Bild: 18 | SpoBi: 20 | Ads: 16 | This variable is used in the kicker1 text style font size parameter for small device sizes. Current online css: --kicker-0-font-size-sm */
135
+ public static let globalTypographyFontSizeKickerKicker1FontSizeXs = 16 /** Bild: 18 | SpoBi: 20 | Ads: 16 | This variable is used in the kicker1 text style font size parameter for small device sizes. Current online css: --kicker-0-font-size-sm */
136
+ public static let globalTypographyFontSizeKickerKicker2FontSizeLg = 21 /** Bild: 24 | SpoBi: 26 | Ads: 21 | This variable is used in the kicker2 text style font size parameter for large device sizes. Current online css: --kicker-1-font-size-lg */
137
+ public static let globalTypographyFontSizeKickerKicker2FontSizeMd = 18 /** Bild: 22 | SpoBi: 26 | Ads: 18 | This variable is used in the kicker2 text style font size parameter for medium device sizes. Current online css: --kicker-1-font-size-md */
138
+ public static let globalTypographyFontSizeKickerKicker2FontSizeSm = 16 /** Bild: 18 | SpoBi: 16 | Ads: 16 | This variable is used in the kicker2 text style font size parameter for small device sizes. Current online css: --kicker-1-font-size-sm */
139
+ public static let globalTypographyFontSizeKickerKicker2FontSizeXs = 16 /** Bild: 18 | SpoBi: 16 | Ads: 16 | This variable is used in the kicker2 text style font size parameter for small device sizes. Current online css: --kicker-1-font-size-sm */
140
+ public static let globalTypographyFontSizeKickerKicker3FontSizeLg = 16 /** Bild: 20 | SpoBi: 22 | Ads: 16 | This variable is used in the kicker3 text style font size parameter for large device sizes. Current online css: --kicker-2-font-size-lg */
141
+ public static let globalTypographyFontSizeKickerKicker3FontSizeMd = 14 /** Bild: 18 | SpoBi: 20 | Ads: 14 | This variable is used in the kicker3 text style font size parameter for medium device sizes. Current online css: --kicker-2-font-size-md */
142
+ public static let globalTypographyFontSizeKickerKicker3FontSizeSm = 14 /** Bild: 16 | SpoBi: 16 | Ads: 14 | This variable is used in the kicker3 text style font size parameter for small device sizes. Current online css: --kicker-2-font-size-sm */
143
+ public static let globalTypographyFontSizeKickerKicker3FontSizeXs = 14 /** Bild: 16 | SpoBi: 16 | Ads: 14 | This variable is used in the kicker3 text style font size parameter for small device sizes. Current online css: --kicker-2-font-size-sm */
144
+ public static let globalTypographyFontSizeKickerKicker4FontSizeLg = 14 /** Bild: 16 | SpoBi: 18 | Ads: 14 | This variable is used in the kicker4 text style font size parameter for large device sizes. Current online css: --kicker-3-font-size-lg */
145
+ public static let globalTypographyFontSizeKickerKicker4FontSizeMd = 14 /** Bild: 16 | SpoBi: 16 | Ads: 14 | This variable is used in the kicker4 text style font size parameter for medium device sizes. Current online css: --kicker-3-font-size-md */
146
+ public static let globalTypographyFontSizeKickerKicker4FontSizeSm = 12 /** Bild: 14 | SpoBi: 14 | Ads: 12 | This variable is used in the kicker4 text style font size parameter for small device sizes. Current online css: --kicker-3-font-size-sm */
147
+ public static let globalTypographyFontSizeKickerKicker4FontSizeXs = 12 /** Bild: 14 | SpoBi: 14 | Ads: 12 | This variable is used in the kicker4 text style font size parameter for small device sizes. Current online css: --kicker-3-font-size-sm */
148
+ public static let globalTypographyFontSizeLabelLabel1FontSize = 17
149
+ public static let globalTypographyFontSizeLabelLabel1RespFontSizeLg = 17
150
+ public static let globalTypographyFontSizeLabelLabel1RespFontSizeMd = 15
151
+ public static let globalTypographyFontSizeLabelLabel1RespFontSizeSm = 10
152
+ public static let globalTypographyFontSizeLabelLabel1RespFontSizeXs = 10
153
+ public static let globalTypographyFontSizeLabelLabel2FontSize = 15
154
+ public static let globalTypographyFontSizeLabelLabel3FontSize = 12
155
+ public static let globalTypographyFontSizeLabelLabel4FontSize = 8
156
+ public static let globalTypographyFontSizeQuoteQuoteFontSizeLg = 18
157
+ public static let globalTypographyFontSizeQuoteQuoteFontSizeMd = 16
158
+ public static let globalTypographyFontSizeQuoteQuoteFontSizeSm = 16
159
+ public static let globalTypographyFontSizeQuoteQuoteFontSizeXs = 16
160
+ public static let globalTypographyFontSizeSubheadlineSubheadline1FontSizeLg = 28 /** Bild: 36 | SpoBi: 26 | Ads: 28 | This variable is used in the subheadline1 text style font size parameter for large device sizes. */
161
+ public static let globalTypographyFontSizeSubheadlineSubheadline1FontSizeMd = 18 /** Bild: 32 | SpoBi: 22 | Ads: 18 | This variable is used in the subheadline1 text style font size parameter for medium device sizes. */
162
+ public static let globalTypographyFontSizeSubheadlineSubheadline1FontSizeSm = 18 /** Bild: 24 | SpoBi: 18 | Ads: 18 | This variable is used in the subheadline1 text style font size parameter for small device sizes. */
163
+ public static let globalTypographyFontSizeSubheadlineSubheadline1FontSizeXs = 18 /** Bild: 24 | SpoBi: 18 | Ads: 18 | This variable is used in the subheadline1 text style font size parameter for small device sizes. */
164
+ public static let globalTypographyFontSizeTitleTitle1FontSizeLg = 28 /** Bild 28 | SpoBi 30 | Ads 28 | current online css: --ressort-header-font-size-lg */
165
+ public static let globalTypographyFontSizeTitleTitle1FontSizeMd = 22 /** Bild 22 | SpoBi 28 | Ads 22 | current online css: --ressort-header-font-size-md */
166
+ public static let globalTypographyFontSizeTitleTitle1FontSizeSm = 22 /** Bild 22 | SpoBi 24 | Ads 22 | current online css: --ressort-header-font-size-sm */
167
+ public static let globalTypographyFontSizeTitleTitle1FontSizeXs = 22 /** Bild 22 | SpoBi 24 | Ads 22 | current online css: --ressort-header-font-size-sm */
168
+ public static let globalTypographyFontSizeTitleTitle2FontSizeLg = 18 /** Bild 20 | SpoBi 20 | Ads 18 | current online css: --caption-1-font-size-lg */
169
+ public static let globalTypographyFontSizeTitleTitle2FontSizeMd = 16 /** Bild 18 | SpoBi 18 | Ads 16 | current online css: --caption-1-font-size-md */
170
+ public static let globalTypographyFontSizeTitleTitle2FontSizeSm = 14 /** Bild 16 | SpoBi 16 | Ads 14 | current online css: --caption-1-font-size-sm */
171
+ public static let globalTypographyFontSizeTitleTitle2FontSizeXs = 14 /** Bild 16 | SpoBi 16 | Ads 14 | current online css var: --caption-1-font-size-sm */
172
+ public static let globalTypographyFontWeightBodyBodyFontWeightBold = 700
173
+ public static let globalTypographyFontWeightBodyBodyFontWeightBook = 400
174
+ public static let globalTypographyFontWeightCalloutCalloutFontWeight = 800
175
+ public static let globalTypographyFontWeightDisplayDisplayFontWeight = 800
176
+ public static let globalTypographyFontWeightFootnoteFootnoteFontWeightBold = 700
177
+ public static let globalTypographyFontWeightFootnoteFootnoteFontWeightBook = 400
178
+ public static let globalTypographyFontWeightHeadlineHeadline1FontWeight = 700
179
+ public static let globalTypographyFontWeightHeadlineHeadline1FontWeightSt = 700
180
+ public static let globalTypographyFontWeightHeadlineHeadline2FontWeight = 700
181
+ public static let globalTypographyFontWeightHeadlineHeadline2FontWeightSt = 700
182
+ public static let globalTypographyFontWeightHeadlineHeadline3FontWeight = 700
183
+ public static let globalTypographyFontWeightHeadlineHeadline3FontWeightSt = 700
184
+ public static let globalTypographyFontWeightHeadlineHeadline4FontWeight = 600
185
+ public static let globalTypographyFontWeightHeadlineHeadline4FontWeightSt = 600
186
+ public static let globalTypographyFontWeightKickerKickerFontWeight = 700
187
+ public static let globalTypographyFontWeightKickerKickerFontWeightSt = 700
188
+ public static let globalTypographyFontWeightLabelLabelFontWeightBold = 700
189
+ public static let globalTypographyFontWeightLabelLabelFontWeightBook = 400
190
+ public static let globalTypographyFontWeightQuoteQuoteFontWeight = 800
191
+ public static let globalTypographyFontWeightSubheadlineSubheadlineFontWeight = 700
192
+ public static let globalTypographyFontWeightTitleTitleFontWeight = 800
193
+ public static let globalTypographyLineHeightBodyBodyLineHeightLg = 29.75
194
+ public static let globalTypographyLineHeightBodyBodyLineHeightMd = 29.75
195
+ public static let globalTypographyLineHeightBodyBodyLineHeightSm = 29.75
196
+ public static let globalTypographyLineHeightBodyBodyLineHeightXs = 29.75
197
+ public static let globalTypographyLineHeightCalloutCallout1LineHeightLg = 28.6
198
+ public static let globalTypographyLineHeightCalloutCallout1LineHeightMd = 28.6
199
+ public static let globalTypographyLineHeightCalloutCallout1LineHeightSm = 20.8
200
+ public static let globalTypographyLineHeightCalloutCallout1LineHeightXs = 20.8
201
+ public static let globalTypographyLineHeightDisplayDisplay1LineHeightLg = 120
202
+ public static let globalTypographyLineHeightDisplayDisplay1LineHeightMd = 72
203
+ public static let globalTypographyLineHeightDisplayDisplay1LineHeightSm = 40
204
+ public static let globalTypographyLineHeightDisplayDisplay1LineHeightXs = 40
205
+ public static let globalTypographyLineHeightDisplayDisplay2LineHeightLg = 64
206
+ public static let globalTypographyLineHeightDisplayDisplay2LineHeightMd = 42
207
+ public static let globalTypographyLineHeightDisplayDisplay2LineHeightSm = 36
208
+ public static let globalTypographyLineHeightDisplayDisplay2LineHeightXs = 36
209
+ public static let globalTypographyLineHeightDisplayDisplay3LineHeightLg = 40
210
+ public static let globalTypographyLineHeightDisplayDisplay3LineHeightMd = 32
211
+ public static let globalTypographyLineHeightDisplayDisplay3LineHeightSm = 28
212
+ public static let globalTypographyLineHeightDisplayDisplay3LineHeightXs = 28
213
+ public static let globalTypographyLineHeightFootnoteFootnote1LineHeightLg = 19.5
214
+ public static let globalTypographyLineHeightFootnoteFootnote1LineHeightMd = 16.9
215
+ public static let globalTypographyLineHeightFootnoteFootnote1LineHeightSm = 16.9
216
+ public static let globalTypographyLineHeightFootnoteFootnote1LineHeightXs = 16.9
217
+ public static let globalTypographyLineHeightFootnoteFootnote2LineHeightLg = 16.9
218
+ public static let globalTypographyLineHeightFootnoteFootnote2LineHeightMd = 13
219
+ public static let globalTypographyLineHeightFootnoteFootnote2LineHeightSm = 13
220
+ public static let globalTypographyLineHeightFootnoteFootnote2LineHeightXs = 13
221
+ public static let globalTypographyLineHeightHeadlineHeadline1LineHeightLg = 77
222
+ public static let globalTypographyLineHeightHeadlineHeadline1LineHeightMd = 56.7
223
+ public static let globalTypographyLineHeightHeadlineHeadline1LineHeightSm = 37.8
224
+ public static let globalTypographyLineHeightHeadlineHeadline1LineHeightXs = 37.8
225
+ public static let globalTypographyLineHeightHeadlineHeadline2LineHeightLg = 52.8
226
+ public static let globalTypographyLineHeightHeadlineHeadline2LineHeightMd = 39.6
227
+ public static let globalTypographyLineHeightHeadlineHeadline2LineHeightSm = 33
228
+ public static let globalTypographyLineHeightHeadlineHeadline2LineHeightXs = 33
229
+ public static let globalTypographyLineHeightHeadlineHeadline3LineHeightLg = 35.2
230
+ public static let globalTypographyLineHeightHeadlineHeadline3LineHeightMd = 28.6
231
+ public static let globalTypographyLineHeightHeadlineHeadline3LineHeightSm = 26.4
232
+ public static let globalTypographyLineHeightHeadlineHeadline3LineHeightXs = 26.4
233
+ public static let globalTypographyLineHeightHeadlineHeadline4LineHeightLg = 27.5
234
+ public static let globalTypographyLineHeightHeadlineHeadline4LineHeightMd = 19.8
235
+ public static let globalTypographyLineHeightHeadlineHeadline4LineHeightSm = 18.4
236
+ public static let globalTypographyLineHeightHeadlineHeadline4LineHeightXs = 18.4
237
+ public static let globalTypographyLineHeightKickerKicker1LineHeightLg = 27.5
238
+ public static let globalTypographyLineHeightKickerKicker1LineHeightMd = 19.8
239
+ public static let globalTypographyLineHeightKickerKicker1LineHeightSm = 17.6
240
+ public static let globalTypographyLineHeightKickerKicker1LineHeightXs = 17.6
241
+ public static let globalTypographyLineHeightKickerKicker2LineHeightLg = 23.1
242
+ public static let globalTypographyLineHeightKickerKicker2LineHeightMd = 19.8
243
+ public static let globalTypographyLineHeightKickerKicker2LineHeightSm = 17.6
244
+ public static let globalTypographyLineHeightKickerKicker2LineHeightXs = 17.6
245
+ public static let globalTypographyLineHeightKickerKicker3LineHeightLg = 17.6
246
+ public static let globalTypographyLineHeightKickerKicker3LineHeightMd = 15.4
247
+ public static let globalTypographyLineHeightKickerKicker3LineHeightSm = 15.4
248
+ public static let globalTypographyLineHeightKickerKicker3LineHeightXs = 15.4
249
+ public static let globalTypographyLineHeightKickerKicker4LineHeightLg = 15.4
250
+ public static let globalTypographyLineHeightKickerKicker4LineHeightMd = 15.4
251
+ public static let globalTypographyLineHeightKickerKicker4LineHeightSm = 13.2
252
+ public static let globalTypographyLineHeightKickerKicker4LineHeightXs = 13.2
253
+ public static let globalTypographyLineHeightLabelLabel1LineHeight = 20.4 /** Bild 17 | SpoBi 20.4 | Ads 20.4 | The label 1 text style uses this variable for its line height parameter. */
254
+ public static let globalTypographyLineHeightLabelLabel1RespLineHeightLg = 17 /** Bild 17 | SpoBi 20.4 | Ads 17 | The label1 responsive text style uses this variable for its line height parameter. */
255
+ public static let globalTypographyLineHeightLabelLabel1RespLineHeightMd = 15 /** Bild 15 | SpoBi 18 | Ads 15 | The label1 responsive text style uses this variable for its line height parameter. */
256
+ public static let globalTypographyLineHeightLabelLabel1RespLineHeightSm = 10 /** Bild 10 | SpoBi 12 | Ads 10 | The label1 responsive text style uses this variable for its line height parameter. */
257
+ public static let globalTypographyLineHeightLabelLabel1RespLineHeightXs = 10 /** Bild 10 | SpoBi 12 | Ads 10 | The label1 responsive text style uses this variable for its line height parameter. */
258
+ public static let globalTypographyLineHeightLabelLabel2LineHeight = 16 /** Bild 16 | SpoBi 19.2 | Ads 16 | The label 2 text style uses this variable for its line height parameter. */
259
+ public static let globalTypographyLineHeightLabelLabel3LineHeight = 14.4 /** Bild 14.4 | SpoBi 14.4 | Ads 14.4 | The label 3 text style uses this variable for its line height parameter. */
260
+ public static let globalTypographyLineHeightLabelLabel4LineHeight = 10 /** Bild 10 | SpoBi 10 | Ads 10 | The label 4 text style uses this variable for its line height parameter. */
261
+ public static let globalTypographyLineHeightQuoteQuoteLineHeightLg = 23.4
262
+ public static let globalTypographyLineHeightQuoteQuoteLineHeightMd = 20.8
263
+ public static let globalTypographyLineHeightQuoteQuoteLineHeightSm = 20.8
264
+ public static let globalTypographyLineHeightQuoteQuoteLineHeightXs = 20.8
265
+ public static let globalTypographyLineHeightSubheadlineSubheadline1LineHeightLg = 36.4
266
+ public static let globalTypographyLineHeightSubheadlineSubheadline1LineHeightMd = 23.4
267
+ public static let globalTypographyLineHeightSubheadlineSubheadline1LineHeightSm = 23.4
268
+ public static let globalTypographyLineHeightSubheadlineSubheadline1LineHeightXs = 23.4
269
+ public static let globalTypographyLineHeightTitleTitle1LineHeightLg = 33.6
270
+ public static let globalTypographyLineHeightTitleTitle1LineHeightMd = 26.4
271
+ public static let globalTypographyLineHeightTitleTitle1LineHeightSm = 26.4
272
+ public static let globalTypographyLineHeightTitleTitle1LineHeightXs = 26.4
273
+ public static let globalTypographyLineHeightTitleTitle2LineHeightLg = 23.4
274
+ public static let globalTypographyLineHeightTitleTitle2LineHeightMd = 19.2
275
+ public static let globalTypographyLineHeightTitleTitle2LineHeightSm = 16.8
276
+ public static let globalTypographyLineHeightTitleTitle2LineHeightXs = 16.8
277
+ public static let globalVisibiltyHideOnAdvertorial = false
278
+ public static let globalVisibiltyHideOnBild = true
279
+ public static let globalVisibiltyHideOnSportBild = true
280
+ public static let globalVisibiltyOnlyAdvertorial = true
281
+ public static let globalVisibiltyOnlyBild = false
282
+ public static let globalVisibiltyOnlySportBild = false
283
+ }