@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,499 @@
1
+
2
+ //
3
+ // breakpoint_bild_xs.dart
4
+ //
5
+
6
+ // Do not edit directly, this file was auto-generated.
7
+
8
+
9
+
10
+ import 'dart:ui';
11
+
12
+ class {
13
+ ._();
14
+
15
+ static const breakpointName = xs;
16
+ static const componentAccordionAccordionLabelFontFamily = Gotham XNarrow; /** This variable exists specifically for changing the accordion font family across brands. It is subject to review. Bild: GothamXNarrow, SpoBi: Inter, Ads: LucindaGrande */
17
+ static const componentArticleAricleMobile1ColGridImageMarginSpace = 0;
18
+ static const componentArticleArticleContentInlineSpace = 16; /** 16 | 16 | 72 | 162 - This variable is used for making the left and right spacings around article content blocks. Current css has the article-body class assigned to a div and article body contains these horizontal padding values. */
19
+ static const componentArticleArticleContentStackSpace = 16; /** 16 - 16 - 24 - 32 - This variable creates the vertical spacing between different article body elements such as avatars, media players, corssheadings, paragraphs, field sets, images, tables, quotes, videos, social embeds, etc. */
20
+ static const componentArticleArticleGalleryATeaserWidth = 145; /** same as standard teaser width size variable */
21
+ static const componentArticleArticleHeadingsInlineSpace = 16; /** 16 | 16 | 72 | 16 - This variable is used for the left and right space within the article page headings container which holds the article page kicker, headline and subheadline. */
22
+ static const componentArticleArticleHeadingsStackSpace = 12; /** 12 | 12 | 12 | 16 - This spacing variable is used for the space between article page heading kickers, headlines and subheadlines. XS&SM need review; correct value might be 8 */
23
+ static const componentArticleArticleHeadlineFontSize = 40; /** 40 - 40 - 72 - 100 - This variable uses the semantic variables headline2 for XS&SM, headline1 for MD&LG */
24
+ static const componentArticleArticleImageCaptionFontSize = 16; /** CSS --article-figure-meta-font-size 16-16-18-18 */
25
+ static const componentArticleArticleImageCaptionLineHeight = 19.5; /** this component level variable references the branding variables */
26
+ static const componentArticleArticleImageContainerStackSpace = 8;
27
+ static const componentArticleArticleImageLandscapeInlineSpace = 0;
28
+ static const componentArticleArticleImagePortaitInlineSpace = 0;
29
+ static const componentArticleArticleImageSourceFontSize = 16; /** NMT CSS --article-figure-meta-font-size */
30
+ static const componentArticleArticleImageSourceLineHeight = 21;
31
+ static const componentArticleArticleInfoboxInlineSpace = 16;
32
+ static const componentArticleArticleInfoboxStackSpace = 16;
33
+ static const componentArticleArticleKickerFontSize = 18; /** This variable is used to control the font size of kickers in the heading section of article pages. 18 - 18 - 22 - 30 */
34
+ static const componentArticleArticleMetaFontFamily = Gotham; /** This variable is used on the font size of article day&time stamp that usually shows up along with the article author avatars. On app versions this variable is used for the avatar names. This variable references variables from the branding collection. */
35
+ static const componentArticleArticleMetaFontSize = 12; /** This variable is used on the font size of article day&time stamp that usually shows up along with the article author avatars. On app versions this variable is used for the avatar names. 12 - 12 - 14 - 16 */
36
+ static const componentArticleArticleTopMarginSpace = 8; /** 8 | 8 | 12 | 16 - This space variable is used at the top edge of the article main content bounding box. */
37
+ static const componentAudioPlayerAudioPlayerFontSize = 16; /** This variable is used in the text style dedicated to audio player labels for elapsed time, reproduction speed and short functionality description text. 16 - 16 - 16 - 18 */
38
+ static const componentAvatarAppAvatarFontFamily = Gotham; /** This variable is used for setting the font of avatars on iOS and Android platforms. This is subject to review. */
39
+ static const componentAvatarAvatarArticleSize = 48; /** This variable is used for setting the size of avatar images in article pages. It references the sizeConstMD variable from the "generic" semantic collection. Its value is 48 across devices. */
40
+ static const componentAvatarAvatarAuthorPageSize = 96; /** 96 - 96 - 130 - 130 This variable is used for controlling the size of the avatar image on author pages. */
41
+ static const componentAvatarAvatarFontFamily = Gotham XNarrow; /** This variable is used in avatar text styles. It receives values from the Brand Tokens Collection. Bild: GothamXNarrow; SpoBi: Inter; Ads: LucidaGrande */
42
+ static const componentAvatarAvatarLabelFontSize = 16; /** This variable is used on avatar names in article pages. Bild: 16 - 16 - 16 - 18; SpoBi&Ads: 13 - 13 - 13 - 15 */
43
+ static const componentAvatarAvatarLabelLineHeight = 21; /** This variable is used for controlling the line height of avatar texts. Its values influence the stacking space between avatar texts. 21 - 21 - 21 - 23 */
44
+ static const componentAvatarAvatarLaneGapSpace = 16; /** This variable is used for setting the inline space between multiple avatars that are horizontally placed in a lane when an article has multiple authors. 16 - 16 - 24 - 24 */
45
+ static const componentBadgeAdLabelBadgeHeightSize = 30; /** 30 - 30 - 30 - 30 - This variable is used on the Advert rectangular badge that is found above an ad containers. */
46
+ static const componentBadgeBadgesInnerInlineSpace = 4; /** This space variable is used for creating the left and right space between a badge's text label and the badge background surface that the text label is on top of. */
47
+ static const componentBadgeBadgesInnerStackSpace = 2; /** This space variable is used for creating the top and bottom space between a badge's text label and the surface that the text label is on top of. */
48
+ static const componentBreadcrumbBreadcrumbArrowLeftInlineSpace1 = 3;
49
+ static const componentBreadcrumbBreadcrumbArrowRightInlineSpace2 = 5;
50
+ static const componentBreadcrumbBreadcrumbFontFamily = Gotham XNarrow;
51
+ static const componentBreadcrumbBreadcrumbFontSize = 15; /** 15 - 15 - 15 - 12 -- Breadcrumbs have a slightly larger font size on mobile devices compared to when they are rendered on larger desktop devices. */
52
+ static const componentBreadcrumbBreadcrumbFontWeight = 700;
53
+ static const componentBreadcrumbBreadcrumbInlineSpace = 12;
54
+ static const componentBreadcrumbBreadcrumbLineHeight = 15; /** 15 - 15 - 15 - 12 -- Breadcrumbs have a slightly larger font size on mobile devices compared to when they are rendered on larger desktop devices. */
55
+ static const componentBreadcrumbBreadcrumbStackSpace = 14;
56
+ static const componentBreakingNewsBreakingNewsBadgeInlineSpace = 6;
57
+ static const componentBreakingNewsBreakingNewsBadgeLowerTitleFontSize = 23;
58
+ static const componentBreakingNewsBreakingNewsBadgeLowerTitleLineHeight = 21;
59
+ static const componentBreakingNewsBreakingNewsBadgeTitelsStackSpace = 0;
60
+ static const componentBreakingNewsBreakingNewsBadgeUpperTitleFontSize = 13;
61
+ static const componentBreakingNewsBreakingNewsBadgeUpperTitleLineHeight = 13;
62
+ static const componentBreakingNewsBreakingNewsContainerHeightSize = 56;
63
+ static const componentBreakingNewsBreakingNewsScrollingTextFontSize = 21;
64
+ static const componentBreakingNewsBreakingNewsScrollingTextLineHeight = 24;
65
+ static const componentButtonButtonBorderRadius = 8;
66
+ static const componentButtonButtonBorderWidthSize = 2;
67
+ static const componentButtonButtonContentGapSpace = 6;
68
+ static const componentButtonButtonContentMinHeightSize = 24; /** This fixed height variable ensures that the button maintains a consistent height, even when the icon is not active. */
69
+ static const componentButtonButtonInlineSpace = 16;
70
+ static const componentButtonButtonLabelFontSize = 15;
71
+ static const componentButtonButtonLabelLineHeight = 15;
72
+ static const componentButtonButtonStackSpace = 6;
73
+ static const componentButtonPartnerLinkButtonInlineSpace = 8;
74
+ static const componentButtonPartnerLinkButtonLabelFontSize = 16; /** Use this variable for controlling the font size of partner buttons. 16 - 16 - 16 - 18 */
75
+ static const componentButtonPartnerLinkButtonLabelHeightSize = 48;
76
+ static const componentCardsNewstickerImageCardWidthSize = 206;
77
+ static const componentCardsSearchResultCardImageHeightSizeStacked = 189;
78
+ static const componentCardsSearchResultCardImageWidthSize = 216;
79
+ static const componentCarouselAppEpaperCarouseBeilageItemWidth = 110;
80
+ static const componentCarouselAppEpaperCarouselItemDefaultWidth = 144;
81
+ static const componentCarouselAppEpaperCarouselItemFocusWidth = 182;
82
+ static const componentCarouselGalleryTeaserAppGapSpace = 0; /** This token is used to create more bottom padding space on system teaser headlines inside the gallery to avoid overlapping with the pagination. */
83
+ static const componentCarouselGalleryTeaserTitleBottomSpace = 28; /** This token is used to create more bottom padding space on system teaser headlines inside the gallery to avoid overlapping with the pagination. */
84
+ static const componentCarouselStandardTeaserGalleryTeaserWidthApp = 280;
85
+ static const componentCarouselStandardTeaserGalleryTeaserWidthWeb = 145;
86
+ static const componentChipsChipsFontSize = 16; /** This variable is used on the chips font size parameter of the chips text style. The font size changes only for the change between larger device widths and any device smaller than the largest. 16 - 16 -16 - 18 */
87
+ static const componentChipsChipsInlineSpace = 12;
88
+ static const componentChipsChipsStackSpace = 8;
89
+ static const componentDSysDocs1columnMobile = 320; /** This variable is used only for this design system's component tests. */
90
+ static const componentDSysDocsBildDesignFrameSpace = 12; /** Variable used in spacing parameters of bild.design webpage mockups. move to bild.design group maybe */
91
+ static const componentDSysDocsDSysDocsWidthSize = 320;
92
+ static const componentDSysDocsDocHeaderHeightSize = 144; /** This variable is used on documentation headers that contain info about platfroms and component names. 144 - 144 - 160 - 180 */
93
+ static const componentDSysDocsDsCaptionStackSpace05x = 4; /** This variable is used in documentation pages that have small caption or lables along with a UI component documented. 4 - 4 - 6 - 8 */
94
+ static const componentDSysDocsDsCaptionStackSpace1x = 8;
95
+ static const componentDSysDocsDsMainContainerSpace = 0; /** This variable is used on documentation pages. This is an alternative variable to the main container max width variable. 0 - 0 - 68 - 68 */
96
+ static const componentDSysDocsFoundationsBannerHeightSize = 80; /** This variable is used on documentation pages that have an artistic banner at the top of the page that is related to the foundation topic on the page. 80 - 80 -80 - 140 */
97
+ static const componentDSysDocsMainContentStageSize = 320; /** This variable is used as a max width size for content blocks. For mobile devices this var references the DSysDocsWidthSize var 320 - 750 - 962 - 1024 */
98
+ static const componentDSysDocsSpecsFontFamily = Gotham; /** This variable is used only for texts and labels that form part of this design system's documentation. */
99
+ static const componentDSysDocsThinBannerVerticalHeightSize = 558; /** This variable is currently used on a thin gallery that appears on desktop websites with petbook and other "books" content. Its height changes to a large height on mobile sites. 558 - 558 - 558 - 186 */
100
+ static const componentDatepickerDatepickerItemDayWidthSize = 44;
101
+ static const componentDatepickerDatepickerItemHeightSize = 44;
102
+ static const componentDatepickerDatepickerItemYearWidthSize = 77;
103
+ static const componentDrawersMobileMenuDrawerLeftInlineSpace = 20;
104
+ static const componentDrawersMobileMenuDrawerMaxWidthSize = 400;
105
+ static const componentDrawersMobileMenuDrawerRightInlineSpace = 16;
106
+ static const componentDrawersMobileMenuDrawerStackSpace = 20;
107
+ static const componentDropdownDropDownBorderRadius = 4;
108
+ static const componentDropdownDropDownItemInlineSpace = 12;
109
+ static const componentDropdownDropDownItemStackSpace = 8;
110
+ static const componentFooterFooterFontFamily = Gotham XNarrow;
111
+ static const componentFooterFooterFontSize = 11; /** This variable is used on footer links that commonly show up at the bottom of pages. The font size parameter remains constant at 11 px across device sizes. */
112
+ static const componentFooterFooterFontSizeUserOfferPages = 18;
113
+ static const componentFooterFooterLineHeight = 14;
114
+ static const componentFooterFooterLineHeightUserOfferPages = 26;
115
+ static const componentIconIconSize = 24;
116
+ static const componentIconIconSizeEmbeddMedia = 40;
117
+ static const componentInfoElementInfoElementTeaserBadgeHeightSize = 16;
118
+ static const componentInfoElementInfoElementTeaserBadgeMarginSpace = 4;
119
+ static const componentInfoElementInfoElementTeaserImageHeightSize = 80;
120
+ static const componentInfoElementInfoElementTeaserImageWidthSize = 80;
121
+ static const componentInputfieldHeyInputContainerInlineSpace = 8;
122
+ static const componentInputfieldInputFieldFontFamily = Gotham XNarrow;
123
+ static const componentInputfieldInputFieldFontSize = 16; /** This variable controls texts inside of input fields such as dropdowns, date input and other text inputs that appear in forms for example. compact 15 - default 17 - spacious 19 */
124
+ static const componentInputfieldInputFieldHeightSize = 36;
125
+ static const componentInputfieldInputFieldIMessageInlineSpace = 16;
126
+ static const componentInputfieldInputFieldInlineSpace = 16;
127
+ static const componentInputfieldInputFieldMessageGapSpace = 4;
128
+ static const componentInputfieldInputFieldMiniLabelInlineSpace = 4;
129
+ static const componentInputfieldInputFieldStackSpace = 6;
130
+ static const componentLivetickerLiveTickerAppCardHeightSize = 96;
131
+ static const componentLivetickerLiveTickerAppCardWidthSize = 250;
132
+ static const componentLivetickerLiveTickerHeadlinesFontSize = 22; /** This variable is used for the font size of live ticker headlines. 22 - 22 - 32 - 32 */
133
+ static const componentLivetickerLiveTickerSliderItemWidthMaxSize = 257;
134
+ static const componentLivetickerLiveTickerTimeHeadlineStackSpace = 4;
135
+ static const componentLivetickerLiveTickerTimeStampFontSize = 14; /** This variable is used for the live ticker time stamp font size. 14 - 14 - 16 - 16 */
136
+ static const componentLivetickerLiveTickerheadlineFontWeight = 600;
137
+ static const componentLivetickerTimeStampFontFamily = Gotham XNarrow;
138
+ static const componentMediaplayerAudioPlayerHeaderStackSpace = 56;
139
+ static const componentMediaplayerPodcastPlayButtonSize = 48;
140
+ static const componentMediaplayerVidPlayerBottomBarGapSpace = 0;
141
+ static const componentMediaplayerVidPlayerControlButtonIconSizeHover = 28;
142
+ static const componentMediaplayerVidPlayerControlButtonSize = 42;
143
+ static const componentMediaplayerVidPlayerProgressBarContainerHeightSize = 24;
144
+ static const componentMediaplayerVidPlayerTimecodeContainerMinWidthSize = 45;
145
+ static const componentMediaplayerVidPlayerTimecodeFontSize = 14;
146
+ static const componentMediaplayerVidPlayerUnmuteButtonWidthSize = 220;
147
+ static const componentMediaplayerVideoTimeBadgeFontFamily = Gotham XNarrow;
148
+ static const componentMenuAppTopbarStageTitleHeight = 14;
149
+ static const componentMenuAppTopbarTitleFontSize = 12;
150
+ static const componentMenuHeyInputShadowVisibility = Color(0x00000000); /** This color type variables are only in this semantic collection for making subtle shadow effects change visibility across device sizes. Shadow alpha: 0 - 0 - 0 - 10 */
151
+ static const componentMenuIOSappTopBarHeightSize = 44;
152
+ static const componentMenuIOSappTopBarLeftInlineSpace = 12;
153
+ static const componentMenuIOSappTopBarRightInlineSpace = 16;
154
+ static const componentMenuMenuBottomStackSpace = 8;
155
+ static const componentMenuMenuItemFontSize = 15; /** This variable is used on the menu link lane and on the mobile side menu drawer. */
156
+ static const componentMenuMenuItemSpace = 8;
157
+ static const componentMenuMenuItemUtilFontSize = 12;
158
+ static const componentMenuMenuItemUtilStackSpace = 10;
159
+ static const componentMenuMenuLeftInlineSpace = 8;
160
+ static const componentMenuMenuLinkItemInlineSpace = 4;
161
+ static const componentMenuMenuLinkLaneHeightSize = 48;
162
+ static const componentMenuMenuLogoDefaultSize = 56;
163
+ static const componentMenuMenuLogoScrolledSize = 56;
164
+ static const componentMenuMenuRightInlineSpace = 0;
165
+ static const componentMenuMenuShadowVisibility = Color(0x1A000000); /** This color type variables are only in this semantic collection for making subtle shadow effects change visibility across device sizes. Shadow alpha: 10 - 10 - 10 - 0 */
166
+ static const componentMenuMenuSpecialNaviItemHeightSize = 48;
167
+ static const componentMenuMenuTopStackSpace = 8;
168
+ static const componentMenuMenuUtilityLinksContainerHeightSize = 56;
169
+ static const componentMenuMenuUtilityLinksDividerHeightSize = 40;
170
+ static const componentMenuMenuUtilityLinksGapSpace = 24;
171
+ static const componentMenuMenuUtillinkItemHeightSize = 48;
172
+ static const componentMenuSubNavBarHeightSize = 42;
173
+ static const componentNewstickerNewsTickerAppCardHeightSize = 116;
174
+ static const componentNewstickerNewsTickerAppCardWidthSize = 250;
175
+ static const componentNewstickerNewsTickerBadgesInlineSpace = 8;
176
+ static const componentNewstickerNewsTickerContentStackSpace = 4;
177
+ static const componentNewstickerNewsTickerEntriesLeftInlineSpace = 22;
178
+ static const componentNewstickerNewsTickerEntriesStackSpace = 22;
179
+ static const componentNewstickerNewsTickerKickerInnerInlineSpace = 4;
180
+ static const componentNewstickerNewsTickerKickerInnerStackSpace = 2;
181
+ static const componentNewstickerNewsTickerLineInlineSpace = 6;
182
+ static const componentNewstickerNewsTickerRedDotSize = 12;
183
+ static const componentNewstickerNewsTickerSkeletonBottomSpace = 64;
184
+ static const componentNewstickerNewsTickerTimeFontFamily = Gotham XNarrow;
185
+ static const componentNewstickerNewsTickerTimeFontSize = 16; /** similar to kicker3 values - 16 - 16 - 16 - 18 */
186
+ static const componentNewstickerNewsTickerTimeFontWeight = 700;
187
+ static const componentNewstickerNewsTickerTimeKickerStackSpace = 4;
188
+ static const componentNewstickerNewsTickerTimeLineHeight = 20.8; /** Figma currently does not allow for percentages in Line Height variables. The values in this token are the result of multiplying the font size by the line height variable defined on the Bild home css -> newsTickerTime line height: 1.3. Line height for this component does not change across devices. */
189
+ static const componentNewstickerNewsTickerTitlesInlineSpace = 18;
190
+ static const componentPaginationGalleryPaginationContainerAppInlineSpace = 12;
191
+ static const componentPaginationGalleryPaginationContainerStackSpace = 12; /** 12 - 12 - 16 - 16 - this component level variable references the semantic */
192
+ static const componentPaginationGalleryPaginationContainerWebInlineSpace = 8; /** 8 - 8 - 12 - 12 - this component level variable references the inlineSpaceConst semantic variables; SM for smaller devices, MD for larger devices */
193
+ static const componentPaginationGalleryPaginationItemHeightSize = 4;
194
+ static const componentPaginationScrollBarThicknessSize = 8;
195
+ static const componentPaywallPaywallCardMaxWidthSize = 346;
196
+ static const componentPaywallPaywallCardPriceNoteFontSize = 40; /** This variable is used on the paywall card text under the price tag. 40 - 40 - 40 - 40 */
197
+ static const componentPaywallPaywallCardPriceNoteLineHeight = 40;
198
+ static const componentPaywallPaywallCardPriceTagFontSize = 64; /** This variable is used on the paywall card price tag. 64 constant */
199
+ static const componentPaywallPaywallCardPriceTagLineHeight = 64;
200
+ static const componentPaywallPaywallContainerGapSpace = -48;
201
+ static const componentPaywallPaywallHeaderBottomStackSpace = 80;
202
+ static const componentQuotesQuoteContainerInlineSpace = 16;
203
+ static const componentQuotesQuoteContainerStackSpace = 16;
204
+ static const componentQuotesQuoteContentGapSpace = 16;
205
+ static const componentQuotesQuoteQuotationMarksFontSize = 28;
206
+ static const componentRadioButtonsRadioSelectorDotActiveSize = 12;
207
+ static const componentRadioButtonsRadioSelectorSize = 20;
208
+ static const componentSearchSearchResultBadgeHeightSize = 18;
209
+ static const componentSectionTitleSectionTitleArrowInlineSpace = 5; /** This variable is used on large title headings that are h2 elements in html and indicate a new section in the user interface. This space changes when a user hovers over the large title. */
210
+ static const componentSectionTitleSectionTitleArrowInlineSpaceActive = 5; /** This variable is used for increasing the space between the text and the arrow at the end of the large title text. On mobile devices there is no hover state so this variables values are the same as the default state values. */
211
+ static const componentSectionTitleSectionTitleHeightSize = 32;
212
+ static const componentSectionTitleSectionTitleInnerStackBottomSpace = 12;
213
+ static const componentSeparatorsSeparatorThicknessSize = 2;
214
+ static const componentSkeletonsArticleSkeletonImageInlineSpace = 12;
215
+ static const componentSkeletonsArticleSkeletonTextInlineSpace = 0;
216
+ static const componentSkeletonsArticleTextSkeletonHeightSize = 270;
217
+ static const componentSkeletonsHeadlinesSkeletonImagePlaceholderMaxWidth = 282;
218
+ static const componentSlidersSliderProgressBarHoverHeightSize = 8;
219
+ static const componentSlidersSliderProgressBarIdleHeightSize = 4;
220
+ static const componentSlidersSliderProgressInactiveHeightSize = 2;
221
+ static const componentSlidersVidPlayerProgressBarHeightSize = 12;
222
+ static const componentSpecialNaviSpecialNaviInlineSpace = 24;
223
+ static const componentSpinnersVideoSpinnerSize = 40;
224
+ static const componentSpinnersVideoSpinnerSize05x = 20;
225
+ static const componentSpinnersVideoSpinnerStrokeSize = 2;
226
+ static const componentTableTableColumnWidthSize05x = 40;
227
+ static const componentTableTableColumnWidthSize075x = 56;
228
+ static const componentTableTableColumnWidthSize15x = 120;
229
+ static const componentTableTableColumnWidthSize1x = 80;
230
+ static const componentTableTableColumnWidthSize25x = 180;
231
+ static const componentTableTableColumnWidthSize2x = 140;
232
+ static const componentTableTableColumnWidthSize3x = 200;
233
+ static const componentTableTableItemMaxWidthSize = 224;
234
+ static const componentTabsAndroidTabbarHeightSize = 56;
235
+ static const componentTabsAppsTabsLabelFontSize = 11; /** Tab labels font size remain constant at 16px across devices and breakpoints. This behavior can be seen on the Mein Konto page tabs for purchases and payment data. */
236
+ static const componentTabsAppsTabsLabelLineHeight = 14.4; /** Tab labels font size remain constant at 16px across devices and breakpoints. This behavior can be seen on the Mein Konto page tabs for purchases and payment data. */
237
+ static const componentTabsIosTabbarHeightSize = 49;
238
+ static const componentTabsTabLabelFontSize = 16; /** Tab labels font size remain constant at 16px across devices and breakpoints. This behavior can be seen on the Mein Konto page tabs for purchases and payment data. */
239
+ static const componentTabsTabLabelFontSizeLine = 12; /** Tab labels font size remain constant at 16px across devices and breakpoints. This behavior can be seen on the Mein Konto page tabs for purchases and payment data. */
240
+ static const componentTabsTopBarTabItemHeightSize = 44;
241
+ static const componentTeaserATeaserATeaserHeadlineFontSize = 28; /** This variable references the semantic variables headline3 (XS&SM) and headline2 (MD&LG). 28 - 28 - 48 - 64 */
242
+ static const componentTeaserATeaserATeaserHeadlineLineHeight = 28;
243
+ static const componentTeaserATeaserATeaserKickerFontSize = 16; /** 16 - 16 - 22 - 24 This variable references the semantic variables kicker3fontsize and kicker2fontsize. At the 600px breakpoint smaller devices use the kicker3 variable */
244
+ static const componentTeaserATeaserATeaserKickerLineHeight = 16;
245
+ static const componentTeaserATeaserATeaserTitleInlineSpace = 8;
246
+ static const componentTeaserBTeaserBTeaserTitleInlineSpace = 8;
247
+ static const componentTeaserBildPlayBildPlayTeaserWidthSize = 145;
248
+ static const componentTeaserMQTeaserMQTeaserHeadlineFontSize = 22; /** XS-headline4FontSize:22 // SM-headline4FontSize:22 // MD-headline3FontSize:36 // LG-headline3FontSize:40 */
249
+ static const componentTeaserMQTeaserMQTeaserHeadlineFontWeight = 600;
250
+ static const componentTeaserMQTeaserMQTeaserHeadlineLineHeight = 22;
251
+ static const componentTeaserMQTeaserMqTeaserTitleInlineSpace = 8;
252
+ static const componentTeaserQTeaserQTeaserTitleInlineSpace = 8;
253
+ static const componentTeaserQTeaserQuadHeadlineFontSize = 48; /** This component level variable is used on the quad teaser headline. It references the semantic level variable headline1. 48 - 48 - 72 - 100 */
254
+ static const componentTeaserQTeaserQuadHeadlineLineHeight = 48;
255
+ static const componentTeaserQTeaserQuadKickerFontSize = 18;
256
+ static const componentTeaserStdTeaserStdTeaserBadgesMarginSpace = 4; /** This variable is used for creating space around the outside of a subscription badge or video icon badge. */
257
+ static const componentTeaserStdTeaserStdTeaserImageTitleGapSpace = 4;
258
+ static const componentTeaserStdTeaserStdTeaserKickerHeadlineStackSpace = 2; /** 2 | 2 | 2 | 2 - This variable is used on the standard teaser vertical spacing between the kicker and the headline. It references the semantic variable stackSpaceConst3XS */
259
+ static const componentTeaserSuperASuperATeaserTitleInlineSpace = 16; /** 16 - 16 - 16 - 16 */
260
+ static const componentTeaserTeaserBadgesHeightSizeLg = 32; /** This token is for controling the height of badges that are inside of teasers. 32 - 32 - 32 - 40 */
261
+ static const componentTeaserTeaserBadgesHeightSizeSm = 24;
262
+ static const componentTeaserTeaserBadgesMarginSpace = 8; /** This variable is used for creating space around the outside of a subscription badge or video icon badge. */
263
+ static const componentTeaserTeaserKickerBgInlineSpace = 6;
264
+ static const componentTeaserTeaserKickerBgStackSpace = 2;
265
+ static const componentTeaserTeaserLayoutGridSpace = 12;
266
+ static const componentTeaserTeaserTitleBottomStackSpace = 12;
267
+ static const componentTeaserTeaserTitleGapSpace = 4;
268
+ static const componentTeaserTeaserTitleInlineLeftSpace = 12;
269
+ static const componentTeaserTeaserTitleStackSpace = 4;
270
+ static const componentToggleSwitchAppToggleItemLabelFontSize = 14; /** This variable is used on labels in list items with toggle switches found in app preferences. 14 - 14 - 16 - 18 */
271
+ static const componentToggleSwitchAppToggleItemLabelLineHeight = 14.1; /** This variable is used on labels in list items with toggle switches found in app preferences. 14.1 - 14.1 - 16.2 - 18.2 */
272
+ static const componentVideoVerticalVideoMockHeadlineFontSize = 22;
273
+ static const componentVideoVideoAdBadgeFontSize = 14; /** 14 - 14 - 16 - 16 -- This variable is used in the videoAdBadge font size parameter. */
274
+ static const componentVideoVideoBadgeTimeLineHeight = 21;
275
+ static const componentVideoVideoFrameInlineSpace = 0;
276
+ static const componentVideoVideoRedPlayIconHeightSize = 10; /** This variable is used for changing the red play icon inside the white square. */
277
+ static const componentVideoVideoRedPlayIconWidthSize = 8;
278
+ static const componentVideoVideoSkeletonContainerHeight = 180;
279
+ static const componentVideoVideoTimeBadgeCornerSize = 2; /** This variable is used on video player badges that display a red play icon on top of a white square next to a time stamp. This variable references the borderRadiusXS. Constant value of 2 across device sizes. */
280
+ static const componentVideoVideoTimeBadgeFontSize = 16; /** 16 - 16 - 18 - 18 -- This variable is used to control the videoTimeBadge text style's font size parameter. The typography style that uses this variable is the videoTimeBadge style. The badge that uses this variable appears on the upper right corner of horizontal videos. */
281
+ static const componentVideoVideoTimeBadgeSize = 24; /** 24 - 24 - 32 - 40 - This variable is used on horizontal video badges that contain a red play icon on top of a white square next to a timestamp. */
282
+ static const semanticBorderBorderRadiusBorderRadiusFull = 9999; /** creates fully rounded shapes, typically used for circular elements like avatars. */
283
+ static const semanticBorderBorderRadiusBorderRadiusLg = 16; /** 16-16-16-16 – use for corner rounding on small cards, overlays, and modal surfaces. */
284
+ static const semanticBorderBorderRadiusBorderRadiusMd = 8; /** 8-8-8-8 – Standard radius for buttons, chips, input fields, and medium-sized interactive elements. */
285
+ static const semanticBorderBorderRadiusBorderRadiusNone = 0; /** 0-0-0-0 – no corner rounding. Used as default for flat layouts, content modules, images, and teaser elements. */
286
+ static const semanticBorderBorderRadiusBorderRadiusSm = 4; /** 4-4-4-4 – use for corner rounding on compact components like checkboxes or small input controls. */
287
+ static const semanticBorderBorderRadiusBorderRadiusXl = 24; /** 24-24-24-24 – use for corner rounding on larger cards, overlays, dialogs, and other container components. */
288
+ static const semanticBorderBorderRadiusBorderRadiusXs = 2; /** 2-2-2-2 use for corner rounding on very small UI elements such as tooltips and badges. */
289
+ static const semanticBorderBorderWidthBorderWidthHairline = 0.33; /** 0.33 -0.33 -0.33 -0.33 – primarily used in mobile app interfaces. Optimized for high-density displays to create subtle dividers and outlines without visual overload. */
290
+ static const semanticBorderBorderWidthBorderWidthThick = 2; /** 2-2-2-2 – use for stronger outlines on form elements (inputs), buttons (outline variants), and interaction states (focus, hover, active) */
291
+ static const semanticBorderBorderWidthBorderWidthThin = 1; /** 1-1-1-1 – use for subtle outlines and dividers */
292
+ static const /**
293
+ * 389 - 599 - 1023 - 1024 – Defines the minimum width of the main frame for different breakpoints.
294
+ * Apply this token to the main frame of page layouts to simulate realistic maximum widths across responsive viewports.
295
+ */
296
+ semanticLayoutBreakpointsBreakpointMaxWidthSize = 389;
297
+ static const /**
298
+ * 320 - 390 - 600 - 1024 – Defines the minimum width of the main frame for different breakpoints.
299
+ * Apply this token to the main frame of page layouts to simulate realistic minimum widths across responsive viewports.
300
+ */
301
+ semanticLayoutBreakpointsBreakpointMinWidthSize = 320;
302
+ static const /**
303
+ * Common viewport height size based on the selected mode.
304
+ * Apply this token to the main frame of page layouts to simulate realistic vertical space.
305
+ */
306
+ semanticLayoutCanvasHeightSizeApp = 568;
307
+ static const /**
308
+ * Common viewport height size based on the selected mode.
309
+ * Apply this token to the main frame of page layouts to simulate realistic vertical space.
310
+ */
311
+ semanticLayoutCanvasHeightSizeWeb = 568;
312
+ static const /**
313
+ * Common viewport width size based on the selected breakpoint.
314
+ * Apply this token to the main frame of page layouts.
315
+ */
316
+ semanticLayoutCanvasWidthSizeApp = 320;
317
+ static const /**
318
+ * Common viewport width size based on the selected breakpoint.
319
+ * Apply this token to the main frame of page layouts.
320
+ */
321
+ semanticLayoutCanvasWidthSizeWeb = 320;
322
+ static const semanticLayoutContentWidthContentMaxWidthFull = 1024; /** Use for content containers that should fill the full width of the page */
323
+ static const semanticLayoutContentWidthContentMaxWidthMedium = 700; /** Use for content containers that should not fill the full page width on larger viewports. This is commonly used on article body text content and other elements in an article page. */
324
+ static const semanticLayoutGridConstantGridSpaceConstLg = 16; /** 16-16-16-16 – use for fixed side paddings and gutters */
325
+ static const semanticLayoutGridConstantGridSpaceConstSm = 12; /** 12-12-12-12 – use for fixed side paddings and gutters */
326
+ static const semanticLayoutGridLayoutGuideLayoutGuideGridColums = 4; /** Used to set the column count in Figma Layout guide Grids */
327
+ static const semanticLayoutGridResponsiveGridSpaceRespBase = 12; /** 12-12-12-16 – use for side paddings and gutters in responsive layouts */
328
+ static const semanticLayoutGridResponsiveGridSpaceRespLg = 24; /** 24-24-32-32 – use for side paddings and gutters in responsive layouts */
329
+ static const semanticLayoutGridResponsiveGridSpaceRespSm = 6; /** 6-6-6-8 – use for side paddings and gutters in responsive layouts */
330
+ static const semanticLayoutGridResponsiveGridSpaceRespXl = 48; /** 48-48-64-64 – use for side paddings and gutters in responsive layouts */
331
+ static const semanticLayoutGridResponsivePageInlineSpace = 0; /** 0-0-0-16 – This token is used on the main homepages content container, ensuring full-width layout (no horizontal padding) on mobile and tablet breakpoints. */
332
+ static const semanticLayoutSectionParagraphEndSpace = 16; /** 16-16-32-32 – Use for spacing after paragraphs in text content */
333
+ static const semanticLayoutSectionSectionSpaceBase = 36; /** 36-36-48-48 – Use for vertical spacing between sections in a layout. */
334
+ static const semanticLayoutSectionSectionSpaceLg = 72; /** 72-72-96-96 – Use for vertical spacing between sections in a layout */
335
+ static const semanticLayoutSectionSectionSpaceSm = 24; /** 24-24-36-36 – Use for vertical spacing between subsections in a layout */
336
+ static const semanticSizeConstantSizeConst2Xl = 72; /** 72-72-72-72 – Use for setting fixed height and width of UI elements */
337
+ static const semanticSizeConstantSizeConst2Xs = 24; /** 24-24-24-24 – Use for setting fixed height and width of UI elements */
338
+ static const semanticSizeConstantSizeConst3Xl = 96; /** 96-96-96-96 – Use for setting fixed height and width of UI elements */
339
+ static const semanticSizeConstantSizeConst3Xs = 16; /** 16-16-16-16 – Use for setting fixed height and width of UI elements */
340
+ static const semanticSizeConstantSizeConst4Xl = 148; /** 148-148-148-148 – Use for setting fixed height and width of UI elements */
341
+ static const semanticSizeConstantSizeConst4Xs = 8; /** 8-8-8-8 – Use for setting fixed height and width of UI elements */
342
+ static const semanticSizeConstantSizeConstLg = 56; /** 56-56-56-56 – Use for setting fixed height and width of UI elements */
343
+ static const semanticSizeConstantSizeConstMd = 48; /** 48-48-48-48 Use for setting fixed height and width of UI elements */
344
+ static const semanticSizeConstantSizeConstSm = 40; /** 40-40-40-40 – Use for setting fixed height and width of UI elements */
345
+ static const semanticSizeConstantSizeConstXl = 64; /** 64-64-64-64 – Use for setting fixed height and width of UI elements */
346
+ static const semanticSizeConstantSizeConstXs = 32; /** 32-32-32-32 – Use for setting fixed height and width of UI elements */
347
+ static const semanticSizeResponsiveSizeResp2Xl = 72; /** 72-72-92-100 – Use for setting height and width of UI elements that scale across breakpoints */
348
+ static const semanticSizeResponsiveSizeResp2Xs = 24; /** 24-24-32-32 – Use for setting height and width of UI elements that scale across breakpoints */
349
+ static const semanticSizeResponsiveSizeResp3Xl = 96; /** 96-96-120-148 – Use for setting height and width of UI elements that scale across breakpoints */
350
+ static const semanticSizeResponsiveSizeResp3Xs = 16; /** 16-16-16-24 – Use for setting height and width of UI elements that scale across breakpoints */
351
+ static const semanticSizeResponsiveSizeResp4Xl = 148; /** 148-148-160-180 – Use for setting height and width of UI elements that scale across breakpoints */
352
+ static const semanticSizeResponsiveSizeResp4Xs = 12; /** 12-12-14-16 – Use for setting height and width of UI elements that scale across breakpoints */
353
+ static const semanticSizeResponsiveSizeRespLg = 56; /** 56-56-72-92 – Use for setting height and width of UI elements that scale across breakpoints */
354
+ static const semanticSizeResponsiveSizeRespMd = 48; /** 48-48-64-72 – Use for setting height and width of UI elements that scale across breakpoints */
355
+ static const semanticSizeResponsiveSizeRespSm = 40; /** 40-40-48-56 – Use for setting height and width of UI elements that scale across breakpoints */
356
+ static const semanticSizeResponsiveSizeRespXl = 64; /** 64-64-80-96 – Use for setting height and width of UI elements that scale across breakpoints */
357
+ static const semanticSizeResponsiveSizeRespXs = 32; /** 32-32-40-48 – Use for setting height and width of UI elements that scale across breakpoints */
358
+ static const semanticSpaceGapConstantGapSpaceConst2Xl = 32; /** 32-32-32-32 – Use for fixed gaps between items inside of UI elements */
359
+ static const semanticSpaceGapConstantGapSpaceConst2Xs = 2; /** 2-2-2-2 – Use for fixed gaps between items inside of UI elements */
360
+ static const semanticSpaceGapConstantGapSpaceConst3Xl = 48; /** 48-48-48-48 – Use for fixed gaps between items inside of UI elements */
361
+ static const semanticSpaceGapConstantGapSpaceConstLg = 16; /** 16-16-16-16 – Use for fixed gaps between items inside of UI elements */
362
+ static const semanticSpaceGapConstantGapSpaceConstMd = 12; /** 12-12-12-12 – Use for fixed gaps between items inside of UI elements */
363
+ static const semanticSpaceGapConstantGapSpaceConstSm = 8; /** 8-8-8-8 – Use for fixed gaps between items inside of UI elements */
364
+ static const semanticSpaceGapConstantGapSpaceConstXl = 24; /** 24-24-24-24 – Use for fixed gaps between items inside of UI elements */
365
+ static const semanticSpaceGapConstantGapSpaceConstXs = 4; /** 4-4-4-4 – Use for fixed gaps between items inside of UI elements */
366
+ static const semanticSpaceGapResponsiveGapSpaceResp2Xl = 32; /** 32-32-48-64 – Use for gaps between items inside of UI elements that scale across breakpoints */
367
+ static const semanticSpaceGapResponsiveGapSpaceResp2Xs = 2; /** 2-2-4-6 – Use for gaps between items inside of UI elements that scale across breakpoints */
368
+ static const semanticSpaceGapResponsiveGapSpaceResp3Xl = 48; /** 48-48-72-96 – Use for gaps between items inside of UI elements that scale across breakpoints */
369
+ static const semanticSpaceGapResponsiveGapSpaceRespLg = 16; /** 16-16-24-32 – Use for gaps between items inside of UI elements that scale across breakpoints */
370
+ static const semanticSpaceGapResponsiveGapSpaceRespMd = 12; /** 12-12-16-24 – Use for gaps between items inside of UI elements that scale across breakpoints */
371
+ static const semanticSpaceGapResponsiveGapSpaceRespSm = 8; /** 8-8-12-16 – Use for gaps between items inside of UI elements that scale across breakpoints */
372
+ static const semanticSpaceGapResponsiveGapSpaceRespXl = 24; /** 24-24-32-48 – Use for gaps between items inside of UI elements that scale across breakpoints */
373
+ static const semanticSpaceGapResponsiveGapSpaceRespXs = 4; /** 4-4-6-8 – Use for gaps between items inside of UI elements that scale across breakpoints */
374
+ static const semanticSpaceInlineConstantInlineSpaceConst2Xl = 32; /** 32-32-32-32 – Use for fixed horizontal (left/right) padding of UI elements */
375
+ static const semanticSpaceInlineConstantInlineSpaceConst2Xs = 4; /** 4-4-4-4 – Use for fixed horizontal (left/right) padding of UI elements */
376
+ static const semanticSpaceInlineConstantInlineSpaceConst3Xs = 2; /** 2-2-2-2 – Use for fixed horizontal (left/right) padding of UI elements */
377
+ static const semanticSpaceInlineConstantInlineSpaceConstLg = 16; /** 16-16-16-16 – Use for fixed horizontal (left/right) padding of UI elements */
378
+ static const semanticSpaceInlineConstantInlineSpaceConstMd = 12; /** 12-12-12-12 – Use for fixed horizontal (left/right) padding of UI elements */
379
+ static const semanticSpaceInlineConstantInlineSpaceConstSm = 8; /** 8-8-8-8 – Use for fixed horizontal (left/right) padding of UI elements */
380
+ static const semanticSpaceInlineConstantInlineSpaceConstXl = 24; /** 24-24-24-24 – Use for fixed horizontal (left/right) padding of UI elements */
381
+ static const semanticSpaceInlineConstantInlineSpaceConstXs = 6; /** 6-6-6-6 – Use for fixed horizontal (left/right) padding of UI elements */
382
+ static const semanticSpaceInlineResponsiveInlineSpaceResp2Xl = 32; /** 32-32-48-64 – use for horizontal (left/right) padding of UI elements that scales across breakpoints */
383
+ static const semanticSpaceInlineResponsiveInlineSpaceRespLg = 16; /** 16-16-24-32 – use for horizontal (left/right) padding of UI elements that scales across breakpoints */
384
+ static const semanticSpaceInlineResponsiveInlineSpaceRespMd = 12; /** 12-12-16-24 use for horizontal (left/right) padding of UI elements that scales across breakpoints */
385
+ static const semanticSpaceInlineResponsiveInlineSpaceRespSm = 8; /** 8-8-12-16 – use for horizontal (left/right) padding of UI elements that scales across breakpoints */
386
+ static const semanticSpaceInlineResponsiveInlineSpaceRespXl = 24; /** 24-24-32-40 – use for horizontal (left/right) padding of UI elements that scales across breakpoints */
387
+ static const semanticSpaceStackConstantStackSpaceConst2Xl = 32; /** 32-32-32-32 – Use for fixed vertical (top/bottom) padding of UI elements */
388
+ static const semanticSpaceStackConstantStackSpaceConst2Xs = 4; /** 4-4-4-4 – Use for fixed vertical (top/bottom) padding of UI elements */
389
+ static const semanticSpaceStackConstantStackSpaceConst3Xs = 2; /** 2-2-2-2 – Use for fixed vertical (top/bottom) padding of UI elements */
390
+ static const semanticSpaceStackConstantStackSpaceConstLg = 16; /** 16-16-16-16 – Use for fixed vertical (top/bottom) padding of UI elements */
391
+ static const semanticSpaceStackConstantStackSpaceConstMd = 12; /** 12-12-12-12 – Use for fixed vertical (top/bottom) padding of UI elements */
392
+ static const semanticSpaceStackConstantStackSpaceConstSm = 8; /** 8-8-8-8 – Use for fixed vertical (top/bottom) padding of UI elements */
393
+ static const semanticSpaceStackConstantStackSpaceConstXl = 24; /** 24-24-24-24 – Use for fixed vertical (top/bottom) padding of UI elements */
394
+ static const semanticSpaceStackConstantStackSpaceConstXs = 6; /** 6-6-6-6 – Use for fixed vertical (top/bottom) padding of UI elements */
395
+ static const semanticSpaceStackResponsiveStackSpaceResp2Xl = 32; /** 32-32-48-64 – use for vertical (top/bottom) padding of UI elements that scales across breakpoints */
396
+ static const semanticSpaceStackResponsiveStackSpaceRespLg = 16; /** 16-16-24-32 – use for vertical (top/bottom) padding of UI elements that scales across breakpoints */
397
+ static const semanticSpaceStackResponsiveStackSpaceRespMd = 12; /** 12-12-16-24 – use for vertical (top/bottom) padding of UI elements that scales across breakpoints */
398
+ static const semanticSpaceStackResponsiveStackSpaceRespSm = 8; /** 8-8-12-16 – use for vertical (top/bottom) padding of UI elements that scales across breakpoints */
399
+ static const semanticSpaceStackResponsiveStackSpaceRespXl = 24; /** 24-24-32-40 – use for vertical (top/bottom) padding of UI elements that scales across breakpoints */
400
+ static const semanticTypographyFontFamilyBodyFontFamily = Gotham XNarrow; /** This variable references the bodyFontFamily variable from the branding collection. */
401
+ static const semanticTypographyFontFamilyCalloutFontFamily = Gotham;
402
+ static const semanticTypographyFontFamilyDisplayFontFamily = Gotham;
403
+ static const semanticTypographyFontFamilyFootnoteFontFamily = Gotham XNarrow;
404
+ static const semanticTypographyFontFamilyHeadlineFontFamily = Gotham Condensed;
405
+ static const semanticTypographyFontFamilyKickerFontFamily = Gotham XNarrow;
406
+ static const semanticTypographyFontFamilyLabelFontFamily = Gotham XNarrow;
407
+ static const semanticTypographyFontFamilyQuoteFontFamily = Gotham;
408
+ static const semanticTypographyFontFamilySubheadlineFontFamily = Gotham Condensed;
409
+ static const semanticTypographyFontFamilyTitleFontFamily = Gotham;
410
+ static const semanticTypographyFontSizeBodyBodyFontSize = 21; /** This variable is used on the body text style's font size parameter. It remains constant at 21. */
411
+ static const semanticTypographyFontSizeCalloutCallout1FontSize = 18; /** This token is used for the font size parameter of the callout text style. 18 - 18 - 22 - 22 */
412
+ static const semanticTypographyFontSizeDisplayDisplay1FontSize = 40; /** This variable is used on the font size parameter for the display1 text style. 40 - 40 - 72 - 120 */
413
+ static const semanticTypographyFontSizeDisplayDisplay2FontSize = 36; /** This variable is used for the font size parameter of the Display2 text style. 36 - 36 - 42 - 64 */
414
+ static const semanticTypographyFontSizeDisplayDisplay3FontSize = 28; /** This variable is used on the display3 font size parameter of the display3 text style. 28 - 28 - 32 - 40 */
415
+ static const semanticTypographyFontSizeFootnoteFootnote1FontSize = 16; /** This token is used on the footnote text style font size parameter. 16 - 16 - 16 - 18 */
416
+ static const semanticTypographyFontSizeFootnoteFootnote2FontSize = 12; /** This token is used in the font size parameter of the footnote2 text style. 12 - 12 - 12 - 16 */
417
+ static const semanticTypographyFontSizeHeadlineHeadline1FontSize = 48; /** This token is used for the headline1 text style's font size parameter. 48 - 48 - 72 - 100 */
418
+ static const semanticTypographyFontSizeHeadlineHeadline2FontSize = 40; /** This token is used on the headline2 text style's font size parameter. 40 - 40 - 48 - 64 */
419
+ static const semanticTypographyFontSizeHeadlineHeadline3FontSize = 28; /** This token is used on the headline3 text style's font size parameter. 28 - 28 - 36 - 40 */
420
+ static const semanticTypographyFontSizeHeadlineHeadline4FontSize = 22; /** This token controls the headline4 text style's font size parameter: 22 - 22 - 26 - 32 */
421
+ static const semanticTypographyFontSizeKickerKicker1FontSize = 18; /** Values come from NMT Figma File 01_Foundation; in online CSS this is kicker0. 18 - 18 - 22 - 30 - This variable does not exist yet in online css. Online css is called kicker0 for smallest font size. */
422
+ static const semanticTypographyFontSizeKickerKicker2FontSize = 18; /** Values come from comparing NMT Figma File 01_Foundation to online CSS. Online kickers are numbered from 0 to 3. This DS uses 1 to 4 following html convention of h1, h2, h3, etc. 18 - 18 - 22 - 24 */
423
+ static const semanticTypographyFontSizeKickerKicker3FontSize = 16; /** Values come from comparing NMT Figma File 01_Foundation to online CSS. Online kickers are numbered from 0 to 3. 16 - 16 - 18 - 20 */
424
+ static const semanticTypographyFontSizeKickerKicker4FontSize = 14; /** Values come from comparing NMT Figma File 01_Foundation to online CSS. Online kickers are numbered from 0 to 3. 14 - 14 - 16 - 16 */
425
+ static const semanticTypographyFontSizeLabelLabel1FontSize = 17; /** This token is used in the label1 text style font size parameter. Its value remains constant at 17 across device sizes. */
426
+ static const semanticTypographyFontSizeLabelLabel1FontSizeResponsive = 10; /** 10 - 10 - 15 - 17 Use this label font size when you want your label's font size to change across device sizes. */
427
+ static const semanticTypographyFontSizeLabelLabel2FontSize = 15; /** This variable controls the label2 text style's font size parameter. Its value remains constant at 15. */
428
+ static const semanticTypographyFontSizeLabelLabel3FontSize = 12; /** This token is used in the label3 text style's font size parameter. Its value remains constant at 12 across device sizes. */
429
+ static const semanticTypographyFontSizeLabelLabel4FontSize = 8; /** This token is used in the font size parameter of the label4 text style. The value remains constant at 8. */
430
+ static const semanticTypographyFontSizeQuoteQuoteFontSize = 16; /** 16 - 16 - 18 - 20 -- This variable is used for controlling the font size of the quote text style. */
431
+ static const semanticTypographyFontSizeSubheadlineSubheadline1FontSize = 24; /** This token controls the subheadline1 font size parameter. 24 - 24 - 32 - 36 */
432
+ static const semanticTypographyFontSizeTitleTitle1FontSize = 22; /** 22 - 22 - 22 - 28 -- html class stage-block-title__text css var --ressort-header-font-size(sm-md-lg) */
433
+ static const semanticTypographyFontSizeTitleTitle2FontSize = 16; /** 16 - 16 - 18 - 20 - html class stage-block-title__text css var --ressort-header-font-size(sm-md-lg) */
434
+ static const semanticTypographyFontWeightBodyBodyFontWeightBold = 700;
435
+ static const semanticTypographyFontWeightBodyBodyFontWeightBook = 400;
436
+ static const semanticTypographyFontWeightCalloutCalloutFontWeight = 800;
437
+ static const semanticTypographyFontWeightDisplayDisplayFontWeight = 800;
438
+ static const semanticTypographyFontWeightFootnoteFootnoteFontWeightBold = 700;
439
+ static const semanticTypographyFontWeightFootnoteFootnoteFontWeightBook = 400;
440
+ static const semanticTypographyFontWeightHeadlineHeadline1FontWeight = 700;
441
+ static const semanticTypographyFontWeightHeadlineHeadline1FontWeightSt = 700; /** This variable is a string type variable for controlling not only headline font weight but also the italic style for Sport Bild headlines. */
442
+ static const semanticTypographyFontWeightHeadlineHeadline2FontWeight = 700;
443
+ static const semanticTypographyFontWeightHeadlineHeadline3FontWeight = 700;
444
+ static const semanticTypographyFontWeightHeadlineHeadline4FontWeight = 600;
445
+ static const semanticTypographyFontWeightKickerKickerFontWeight = 700;
446
+ static const semanticTypographyFontWeightKickerKickerFontWeightSt = 700;
447
+ static const semanticTypographyFontWeightLabelLabelFontWeightBold = 700;
448
+ static const semanticTypographyFontWeightLabelLabelFontWeightBook = 400;
449
+ static const semanticTypographyFontWeightQuoteQuoteFontWeight = 800;
450
+ static const semanticTypographyFontWeightSubheadlineSubheadlineFontWeight = 700;
451
+ static const semanticTypographyFontWeightTitleTitleFontWeight = 800;
452
+ static const semanticTypographyLetterSpacingDisplayDisplay1LetterSpacing = -0.5; /** -0.5 | -0.5 | -1 | -2 | This variable is used for the letter spacing parameter of the display1 text style. On smaller devices the value is smaller than on larger devices. On desktop devices the letter spacing is further reduced for making the text style more compact. */
453
+ static const semanticTypographyLetterSpacingDisplayDisplay2LetterSpacing = -0.5; /** -0.5 | -0.5 | -1 | -1 | This variable is used for the letter spacing parameter of the display2 text style. On smaller devices the value is smaller than on larger devices. */
454
+ static const semanticTypographyLetterSpacingDisplayDisplay3LetterSpacing = -0.5; /** -0.5 | -0.5 | -1 | -1 | This variable is used for the letter spacing parameter of the display3 text style. On smaller devices the value is smaller than on larger devices. */
455
+ static const semanticTypographyLetterSpacingLetterSpacingNegativeLg = -2; /** -2 | -2 | -2 | -3 | This variable takes primitive letter spacing variables and creates this semantic variable for use on designs that change across device sizes. */
456
+ static const semanticTypographyLetterSpacingLetterSpacingNegativeMd = -1; /** -1 | -1 | -1 | -1 | This variable takes primitive letter spacing variables and creates this semantic variable for use on designs that change across device sizes. */
457
+ static const semanticTypographyLetterSpacingLetterSpacingNegativeSm = -0.5; /** -0.5 | -0.5 | -0.25 | -0.25 | This variable takes primitive letter spacing variables and creates this semantic variable for use on designs that change across device sizes. */
458
+ static const semanticTypographyLetterSpacingLetterSpacingNegativeXs = -0.25; /** -0.25 | -0.25 | -0.25 | -0.25 | This variable takes primitive letter spacing variables and creates this semantic variable for use on designs that change across device sizes. This letter spacing was only found in large titles on iOS mobile app large title component. */
459
+ static const semanticTypographyLetterSpacingLetterSpacingNone = 0; /** 0 | 0 | 0 | 0 | This variable takes primitive letter spacing variables and creates this semantic variable for use on designs that change across device sizes. */
460
+ static const semanticTypographyLetterSpacingLetterSpacingPositiveLg = 2; /** 2 | 2 | 2 | 3 | This variable takes primitive letter spacing variables and creates this semantic variable for use on designs that change across device sizes. */
461
+ static const semanticTypographyLetterSpacingLetterSpacingPositiveMd = 1; /** 1 | 1 | 1 | 1 | This variable takes primitive letter spacing variables and creates this semantic variable for use on designs that change across device sizes. */
462
+ static const semanticTypographyLetterSpacingLetterSpacingPositiveSm = 0.5; /** 0.5 | 0.5 | 0.5 | 0.5 | This variable takes primitive letter spacing variables and creates this semantic variable for use on designs that change across device sizes. */
463
+ static const semanticTypographyLetterSpacingLetterSpacingPositiveXs = 0.25; /** 0.25 | 0.25 | 0.25 | 0.25 | This variable takes primitive letter spacing variables and creates this semantic variable for use on designs that change across device sizes. */
464
+ static const semanticTypographyLineHeightBodyBodyLineHeight = 28; /** Figma's font line height currently does not allow for multipliers as is used on current website css var(--body-line-height) */
465
+ static const semanticTypographyLineHeightCalloutCalloutLineHeight = 18;
466
+ static const semanticTypographyLineHeightDisplayDisplay1LineHeight = 40;
467
+ static const semanticTypographyLineHeightDisplayDisplay2LineHeight = 36;
468
+ static const semanticTypographyLineHeightDisplayDisplay3LineHeight = 28;
469
+ static const semanticTypographyLineHeightFootnoteFootnote1LineHeight = 21;
470
+ static const semanticTypographyLineHeightFootnoteFootnote2LineHeight = 15.6;
471
+ static const semanticTypographyLineHeightHeadlineHeadline1LineHeight = 48;
472
+ static const semanticTypographyLineHeightHeadlineHeadline2LineHeight = 40;
473
+ static const semanticTypographyLineHeightHeadlineHeadline3LineHeight = 28;
474
+ static const semanticTypographyLineHeightHeadlineHeadline4LineHeight = 22;
475
+ static const semanticTypographyLineHeightKickerKicker1LineHeight = 19.8;
476
+ static const semanticTypographyLineHeightKickerKicker2LineHeight = 19.8;
477
+ static const semanticTypographyLineHeightKickerKicker3LineHeight = 17.6;
478
+ static const semanticTypographyLineHeightKickerKicker4LineHeight = 15.4;
479
+ static const semanticTypographyLineHeightLabelLabel1LineHeight = 17; /** This variable is used in the label1 text style's line height parameter. It references branding variables for brand specific line heights. */
480
+ static const semanticTypographyLineHeightLabelLabel1ResponsiveLineHeight = 10;
481
+ static const semanticTypographyLineHeightLabelLabel2LineHeight = 16;
482
+ static const semanticTypographyLineHeightLabelLabel3LineHeight = 14.4;
483
+ static const semanticTypographyLineHeightLabelLabel4LineHeight = 10;
484
+ static const semanticTypographyLineHeightQuoteQuoteLineHeight = 16; /** This variable is used in the quote text style line height parameter. */
485
+ static const semanticTypographyLineHeightSubheadlineSubheadline1LineHeight = 24;
486
+ static const semanticTypographyLineHeightTitleTitle1LineHeight = 22;
487
+ static const semanticTypographyLineHeightTitleTitle2LineHeight = 17.6; /** html class stage-block-title__text css var --ressort-header-font-size(sm-md-lg) */
488
+ static const semanticVisibilityBooleanHideOnDesktop = true; /** Use for hiding elements on desktop viewport sizes only */
489
+ static const semanticVisibilityBooleanHideOnMobile = false; /** Use for hiding elements on mobile viewport sizes */
490
+ static const semanticVisibilityBooleanVisilbleAbove600px = false; /** Use for showing elements on viewport sizes above 600 px */
491
+ static const semanticVisibilityBooleanVisilbleBelow600px = true; /** Use for showing elements on viewport sizes below 600 px */
492
+ static const semanticVisibilityBooleanVisilbleDesktopOnly = false; /** Use for showing elements on desktop viewport sizes only */
493
+ static const semanticVisibilityBooleanVisilbleMobileOnly = true; /** Use for showing elements on mobile viewport sizes only */
494
+ static const semanticVisibilityBooleanVisilbleTabletOnly = false; /** Use for showing elements on tablet viewport sizes only */
495
+ static const semanticVisibilityVariantSwitchBpSpecificApp = compact;
496
+ static const semanticVisibilityVariantSwitchBpSpecificWeb = xs/sm;
497
+ static const semanticVisibilityVariantSwitchChangeOnLg = xs/sm/md;
498
+ static const semanticVisibilityVariantSwitchChangeOnMd = xs/sm; /** This variable is used for controlling size changes across device sizes on some components such as the vertical newsticker cards and the search results cards. Both have cards that change layouts at different breakpoints. */
499
+ }