@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,473 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <!--
4
+ Do not edit directly, this file was auto-generated.
5
+ -->
6
+ <resources>
7
+ <integer name="semantic_border_border_radius_border_radius_none">0</integer><!-- 0-0-0-0 – no corner rounding. Used as default for flat layouts, content modules, images, and teaser elements. -->
8
+ <integer name="semantic_border_border_radius_border_radius_xs">2</integer><!-- 2-2-2-2 use for corner rounding on very small UI elements such as tooltips and badges. -->
9
+ <integer name="semantic_border_border_radius_border_radius_sm">4</integer><!-- 4-4-4-4 – use for corner rounding on compact components like checkboxes or small input controls. -->
10
+ <integer name="semantic_border_border_radius_border_radius_md">8</integer><!-- 8-8-8-8 – Standard radius for buttons, chips, input fields, and medium-sized interactive elements. -->
11
+ <integer name="semantic_border_border_radius_border_radius_lg">16</integer><!-- 16-16-16-16 – use for corner rounding on small cards, overlays, and modal surfaces. -->
12
+ <integer name="semantic_border_border_radius_border_radius_xl">24</integer><!-- 24-24-24-24 – use for corner rounding on larger cards, overlays, dialogs, and other container components. -->
13
+ <integer name="semantic_border_border_radius_border_radius_full">9999</integer><!-- creates fully rounded shapes, typically used for circular elements like avatars. -->
14
+ <integer name="semantic_border_border_width_border_width_hairline">0.33</integer><!-- 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. -->
15
+ <integer name="semantic_border_border_width_border_width_thin">1</integer><!-- 1-1-1-1 – use for subtle outlines and dividers -->
16
+ <integer name="semantic_border_border_width_border_width_thick">2</integer><!-- 2-2-2-2 – use for stronger outlines on form elements (inputs), buttons (outline variants), and interaction states (focus, hover, active) -->
17
+ <integer name="semantic_layout_canvas_width_size_web">1024</integer><!-- Common viewport width size based on the selected breakpoint.
18
+ Apply this token to the main frame of page layouts. -->
19
+ <integer name="semantic_layout_canvas_height_size_web">768</integer><!-- Common viewport height size based on the selected mode.
20
+ Apply this token to the main frame of page layouts to simulate realistic vertical space. -->
21
+ <integer name="semantic_layout_canvas_width_size_app">1194</integer><!-- Common viewport width size based on the selected breakpoint.
22
+ Apply this token to the main frame of page layouts. -->
23
+ <integer name="semantic_layout_canvas_height_size_app">834</integer><!-- Common viewport height size based on the selected mode.
24
+ Apply this token to the main frame of page layouts to simulate realistic vertical space. -->
25
+ <integer name="semantic_layout_breakpoints_breakpoint_min_width_size">1024</integer><!-- 320 - 390 - 600 - 1024 – Defines the minimum width of the main frame for different breakpoints.
26
+ Apply this token to the main frame of page layouts to simulate realistic minimum widths across responsive viewports. -->
27
+ <integer name="semantic_layout_breakpoints_breakpoint_max_width_size">1024</integer><!-- 389 - 599 - 1023 - 1024 – Defines the minimum width of the main frame for different breakpoints.
28
+ Apply this token to the main frame of page layouts to simulate realistic maximum widths across responsive viewports. -->
29
+ <integer name="semantic_layout_content_width_content_max_width_medium">700</integer><!-- 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. -->
30
+ <integer name="semantic_layout_content_width_content_max_width_full">1024</integer><!-- Use for content containers that should fill the full width of the page -->
31
+ <integer name="semantic_layout_grid_responsive_grid_space_resp_sm">8</integer><!-- 6-6-6-8 – use for side paddings and gutters in responsive layouts -->
32
+ <integer name="semantic_layout_grid_responsive_grid_space_resp_base">16</integer><!-- 12-12-12-16 – use for side paddings and gutters in responsive layouts -->
33
+ <integer name="semantic_layout_grid_responsive_grid_space_resp_lg">32</integer><!-- 24-24-32-32 – use for side paddings and gutters in responsive layouts -->
34
+ <integer name="semantic_layout_grid_responsive_grid_space_resp_xl">64</integer><!-- 48-48-64-64 – use for side paddings and gutters in responsive layouts -->
35
+ <integer name="semantic_layout_grid_responsive_page_inline_space">16</integer><!-- 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. -->
36
+ <integer name="semantic_layout_grid_constant_grid_space_const_sm">12</integer><!-- 12-12-12-12 – use for fixed side paddings and gutters -->
37
+ <integer name="semantic_layout_grid_constant_grid_space_const_lg">16</integer><!-- 16-16-16-16 – use for fixed side paddings and gutters -->
38
+ <integer name="semantic_layout_grid_layout_guide_layout_guide_grid_colums">12</integer><!-- Used to set the column count in Figma Layout guide Grids -->
39
+ <integer name="semantic_layout_section_section_space_sm">36</integer><!-- 24-24-36-36 – Use for vertical spacing between subsections in a layout -->
40
+ <integer name="semantic_layout_section_section_space_base">48</integer><!-- 36-36-48-48 – Use for vertical spacing between sections in a layout. -->
41
+ <integer name="semantic_layout_section_section_space_lg">96</integer><!-- 72-72-96-96 – Use for vertical spacing between sections in a layout -->
42
+ <integer name="semantic_layout_section_paragraph_end_space">32</integer><!-- 16-16-32-32 – Use for spacing after paragraphs in text content -->
43
+ <integer name="semantic_space_gap_responsive_gap_space_resp2_xs">6</integer><!-- 2-2-4-6 – Use for gaps between items inside of UI elements that scale across breakpoints -->
44
+ <integer name="semantic_space_gap_responsive_gap_space_resp_xs">8</integer><!-- 4-4-6-8 – Use for gaps between items inside of UI elements that scale across breakpoints -->
45
+ <integer name="semantic_space_gap_responsive_gap_space_resp_sm">16</integer><!-- 8-8-12-16 – Use for gaps between items inside of UI elements that scale across breakpoints -->
46
+ <integer name="semantic_space_gap_responsive_gap_space_resp_md">24</integer><!-- 12-12-16-24 – Use for gaps between items inside of UI elements that scale across breakpoints -->
47
+ <integer name="semantic_space_gap_responsive_gap_space_resp_lg">32</integer><!-- 16-16-24-32 – Use for gaps between items inside of UI elements that scale across breakpoints -->
48
+ <integer name="semantic_space_gap_responsive_gap_space_resp_xl">48</integer><!-- 24-24-32-48 – Use for gaps between items inside of UI elements that scale across breakpoints -->
49
+ <integer name="semantic_space_gap_responsive_gap_space_resp2_xl">64</integer><!-- 32-32-48-64 – Use for gaps between items inside of UI elements that scale across breakpoints -->
50
+ <integer name="semantic_space_gap_responsive_gap_space_resp3_xl">96</integer><!-- 48-48-72-96 – Use for gaps between items inside of UI elements that scale across breakpoints -->
51
+ <integer name="semantic_space_gap_constant_gap_space_const2_xs">2</integer><!-- 2-2-2-2 – Use for fixed gaps between items inside of UI elements -->
52
+ <integer name="semantic_space_gap_constant_gap_space_const_xs">4</integer><!-- 4-4-4-4 – Use for fixed gaps between items inside of UI elements -->
53
+ <integer name="semantic_space_gap_constant_gap_space_const_sm">8</integer><!-- 8-8-8-8 – Use for fixed gaps between items inside of UI elements -->
54
+ <integer name="semantic_space_gap_constant_gap_space_const_md">12</integer><!-- 12-12-12-12 – Use for fixed gaps between items inside of UI elements -->
55
+ <integer name="semantic_space_gap_constant_gap_space_const_lg">16</integer><!-- 16-16-16-16 – Use for fixed gaps between items inside of UI elements -->
56
+ <integer name="semantic_space_gap_constant_gap_space_const_xl">24</integer><!-- 24-24-24-24 – Use for fixed gaps between items inside of UI elements -->
57
+ <integer name="semantic_space_gap_constant_gap_space_const2_xl">32</integer><!-- 32-32-32-32 – Use for fixed gaps between items inside of UI elements -->
58
+ <integer name="semantic_space_gap_constant_gap_space_const3_xl">48</integer><!-- 48-48-48-48 – Use for fixed gaps between items inside of UI elements -->
59
+ <integer name="semantic_space_inline_responsive_inline_space_resp_sm">16</integer><!-- 8-8-12-16 – use for horizontal (left/right) padding of UI elements that scales across breakpoints -->
60
+ <integer name="semantic_space_inline_responsive_inline_space_resp_md">24</integer><!-- 12-12-16-24 use for horizontal (left/right) padding of UI elements that scales across breakpoints -->
61
+ <integer name="semantic_space_inline_responsive_inline_space_resp_lg">32</integer><!-- 16-16-24-32 – use for horizontal (left/right) padding of UI elements that scales across breakpoints -->
62
+ <integer name="semantic_space_inline_responsive_inline_space_resp_xl">40</integer><!-- 24-24-32-40 – use for horizontal (left/right) padding of UI elements that scales across breakpoints -->
63
+ <integer name="semantic_space_inline_responsive_inline_space_resp2_xl">64</integer><!-- 32-32-48-64 – use for horizontal (left/right) padding of UI elements that scales across breakpoints -->
64
+ <integer name="semantic_space_inline_constant_inline_space_const3_xs">2</integer><!-- 2-2-2-2 – Use for fixed horizontal (left/right) padding of UI elements -->
65
+ <integer name="semantic_space_inline_constant_inline_space_const2_xs">4</integer><!-- 4-4-4-4 – Use for fixed horizontal (left/right) padding of UI elements -->
66
+ <integer name="semantic_space_inline_constant_inline_space_const_xs">6</integer><!-- 6-6-6-6 – Use for fixed horizontal (left/right) padding of UI elements -->
67
+ <integer name="semantic_space_inline_constant_inline_space_const_sm">8</integer><!-- 8-8-8-8 – Use for fixed horizontal (left/right) padding of UI elements -->
68
+ <integer name="semantic_space_inline_constant_inline_space_const_md">12</integer><!-- 12-12-12-12 – Use for fixed horizontal (left/right) padding of UI elements -->
69
+ <integer name="semantic_space_inline_constant_inline_space_const_lg">16</integer><!-- 16-16-16-16 – Use for fixed horizontal (left/right) padding of UI elements -->
70
+ <integer name="semantic_space_inline_constant_inline_space_const_xl">24</integer><!-- 24-24-24-24 – Use for fixed horizontal (left/right) padding of UI elements -->
71
+ <integer name="semantic_space_inline_constant_inline_space_const2_xl">32</integer><!-- 32-32-32-32 – Use for fixed horizontal (left/right) padding of UI elements -->
72
+ <integer name="semantic_space_stack_responsive_stack_space_resp_sm">16</integer><!-- 8-8-12-16 – use for vertical (top/bottom) padding of UI elements that scales across breakpoints -->
73
+ <integer name="semantic_space_stack_responsive_stack_space_resp_md">24</integer><!-- 12-12-16-24 – use for vertical (top/bottom) padding of UI elements that scales across breakpoints -->
74
+ <integer name="semantic_space_stack_responsive_stack_space_resp_lg">32</integer><!-- 16-16-24-32 – use for vertical (top/bottom) padding of UI elements that scales across breakpoints -->
75
+ <integer name="semantic_space_stack_responsive_stack_space_resp_xl">40</integer><!-- 24-24-32-40 – use for vertical (top/bottom) padding of UI elements that scales across breakpoints -->
76
+ <integer name="semantic_space_stack_responsive_stack_space_resp2_xl">64</integer><!-- 32-32-48-64 – use for vertical (top/bottom) padding of UI elements that scales across breakpoints -->
77
+ <integer name="semantic_space_stack_constant_stack_space_const3_xs">2</integer><!-- 2-2-2-2 – Use for fixed vertical (top/bottom) padding of UI elements -->
78
+ <integer name="semantic_space_stack_constant_stack_space_const2_xs">4</integer><!-- 4-4-4-4 – Use for fixed vertical (top/bottom) padding of UI elements -->
79
+ <integer name="semantic_space_stack_constant_stack_space_const_xs">6</integer><!-- 6-6-6-6 – Use for fixed vertical (top/bottom) padding of UI elements -->
80
+ <integer name="semantic_space_stack_constant_stack_space_const_sm">8</integer><!-- 8-8-8-8 – Use for fixed vertical (top/bottom) padding of UI elements -->
81
+ <integer name="semantic_space_stack_constant_stack_space_const_md">12</integer><!-- 12-12-12-12 – Use for fixed vertical (top/bottom) padding of UI elements -->
82
+ <integer name="semantic_space_stack_constant_stack_space_const_lg">16</integer><!-- 16-16-16-16 – Use for fixed vertical (top/bottom) padding of UI elements -->
83
+ <integer name="semantic_space_stack_constant_stack_space_const_xl">24</integer><!-- 24-24-24-24 – Use for fixed vertical (top/bottom) padding of UI elements -->
84
+ <integer name="semantic_space_stack_constant_stack_space_const2_xl">32</integer><!-- 32-32-32-32 – Use for fixed vertical (top/bottom) padding of UI elements -->
85
+ <integer name="semantic_size_responsive_size_resp4_xs">16</integer><!-- 12-12-14-16 – Use for setting height and width of UI elements that scale across breakpoints -->
86
+ <integer name="semantic_size_responsive_size_resp3_xs">24</integer><!-- 16-16-16-24 – Use for setting height and width of UI elements that scale across breakpoints -->
87
+ <integer name="semantic_size_responsive_size_resp2_xs">32</integer><!-- 24-24-32-32 – Use for setting height and width of UI elements that scale across breakpoints -->
88
+ <integer name="semantic_size_responsive_size_resp_xs">48</integer><!-- 32-32-40-48 – Use for setting height and width of UI elements that scale across breakpoints -->
89
+ <integer name="semantic_size_responsive_size_resp_sm">56</integer><!-- 40-40-48-56 – Use for setting height and width of UI elements that scale across breakpoints -->
90
+ <integer name="semantic_size_responsive_size_resp_md">72</integer><!-- 48-48-64-72 – Use for setting height and width of UI elements that scale across breakpoints -->
91
+ <integer name="semantic_size_responsive_size_resp_lg">92</integer><!-- 56-56-72-92 – Use for setting height and width of UI elements that scale across breakpoints -->
92
+ <integer name="semantic_size_responsive_size_resp_xl">96</integer><!-- 64-64-80-96 – Use for setting height and width of UI elements that scale across breakpoints -->
93
+ <integer name="semantic_size_responsive_size_resp2_xl">100</integer><!-- 72-72-92-100 – Use for setting height and width of UI elements that scale across breakpoints -->
94
+ <integer name="semantic_size_responsive_size_resp3_xl">148</integer><!-- 96-96-120-148 – Use for setting height and width of UI elements that scale across breakpoints -->
95
+ <integer name="semantic_size_responsive_size_resp4_xl">180</integer><!-- 148-148-160-180 – Use for setting height and width of UI elements that scale across breakpoints -->
96
+ <integer name="semantic_size_constant_size_const4_xs">8</integer><!-- 8-8-8-8 – Use for setting fixed height and width of UI elements -->
97
+ <integer name="semantic_size_constant_size_const3_xs">16</integer><!-- 16-16-16-16 – Use for setting fixed height and width of UI elements -->
98
+ <integer name="semantic_size_constant_size_const2_xs">24</integer><!-- 24-24-24-24 – Use for setting fixed height and width of UI elements -->
99
+ <integer name="semantic_size_constant_size_const_xs">32</integer><!-- 32-32-32-32 – Use for setting fixed height and width of UI elements -->
100
+ <integer name="semantic_size_constant_size_const_sm">40</integer><!-- 40-40-40-40 – Use for setting fixed height and width of UI elements -->
101
+ <integer name="semantic_size_constant_size_const_md">48</integer><!-- 48-48-48-48 Use for setting fixed height and width of UI elements -->
102
+ <integer name="semantic_size_constant_size_const_lg">56</integer><!-- 56-56-56-56 – Use for setting fixed height and width of UI elements -->
103
+ <integer name="semantic_size_constant_size_const_xl">64</integer><!-- 64-64-64-64 – Use for setting fixed height and width of UI elements -->
104
+ <integer name="semantic_size_constant_size_const2_xl">72</integer><!-- 72-72-72-72 – Use for setting fixed height and width of UI elements -->
105
+ <integer name="semantic_size_constant_size_const3_xl">96</integer><!-- 96-96-96-96 – Use for setting fixed height and width of UI elements -->
106
+ <integer name="semantic_size_constant_size_const4_xl">148</integer><!-- 148-148-148-148 – Use for setting fixed height and width of UI elements -->
107
+ <string name="semantic_typography_font_family_body_font_family">Lucida Grande</string><!-- This variable references the bodyFontFamily variable from the branding collection. -->
108
+ <string name="semantic_typography_font_family_callout_font_family">Lucida Grande</string>
109
+ <string name="semantic_typography_font_family_display_font_family">Lucida Grande</string>
110
+ <string name="semantic_typography_font_family_footnote_font_family">Lucida Grande</string>
111
+ <string name="semantic_typography_font_family_headline_font_family">Lucida Grande</string>
112
+ <string name="semantic_typography_font_family_kicker_font_family">Lucida Grande</string>
113
+ <string name="semantic_typography_font_family_label_font_family">Lucida Grande</string>
114
+ <string name="semantic_typography_font_family_subheadline_font_family">Lucida Grande</string>
115
+ <string name="semantic_typography_font_family_title_font_family">Lucida Grande</string>
116
+ <string name="semantic_typography_font_family_quote_font_family">Lucida Grande</string>
117
+ <integer name="semantic_typography_font_size_body_body_font_size">17</integer><!-- This variable is used on the body text style's font size parameter. It remains constant at 21. -->
118
+ <integer name="semantic_typography_font_size_callout_callout1_font_size">22</integer><!-- This token is used for the font size parameter of the callout text style. 18 - 18 - 22 - 22 -->
119
+ <integer name="semantic_typography_font_size_display_display1_font_size">116</integer><!-- This variable is used on the font size parameter for the display1 text style. 40 - 40 - 72 - 120 -->
120
+ <integer name="semantic_typography_font_size_display_display2_font_size">62</integer><!-- This variable is used for the font size parameter of the Display2 text style. 36 - 36 - 42 - 64 -->
121
+ <integer name="semantic_typography_font_size_display_display3_font_size">39</integer><!-- This variable is used on the display3 font size parameter of the display3 text style. 28 - 28 - 32 - 40 -->
122
+ <integer name="semantic_typography_font_size_footnote_footnote1_font_size">15</integer><!-- This token is used on the footnote text style font size parameter. 16 - 16 - 16 - 18 -->
123
+ <integer name="semantic_typography_font_size_footnote_footnote2_font_size">13</integer><!-- This token is used in the font size parameter of the footnote2 text style. 12 - 12 - 12 - 16 -->
124
+ <integer name="semantic_typography_font_size_headline_headline1_font_size">70</integer><!-- This token is used for the headline1 text style's font size parameter. 48 - 48 - 72 - 100 -->
125
+ <integer name="semantic_typography_font_size_headline_headline2_font_size">48</integer><!-- This token is used on the headline2 text style's font size parameter. 40 - 40 - 48 - 64 -->
126
+ <integer name="semantic_typography_font_size_headline_headline3_font_size">32</integer><!-- This token is used on the headline3 text style's font size parameter. 28 - 28 - 36 - 40 -->
127
+ <integer name="semantic_typography_font_size_headline_headline4_font_size">22</integer><!-- This token controls the headline4 text style's font size parameter: 22 - 22 - 26 - 32 -->
128
+ <integer name="semantic_typography_font_size_kicker_kicker1_font_size">25</integer><!-- 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. -->
129
+ <integer name="semantic_typography_font_size_kicker_kicker2_font_size">21</integer><!-- 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 -->
130
+ <integer name="semantic_typography_font_size_kicker_kicker3_font_size">16</integer><!-- Values come from comparing NMT Figma File 01_Foundation to online CSS. Online kickers are numbered from 0 to 3. 16 - 16 - 18 - 20 -->
131
+ <integer name="semantic_typography_font_size_kicker_kicker4_font_size">14</integer><!-- Values come from comparing NMT Figma File 01_Foundation to online CSS. Online kickers are numbered from 0 to 3. 14 - 14 - 16 - 16 -->
132
+ <integer name="semantic_typography_font_size_label_label1_font_size">17</integer><!-- This token is used in the label1 text style font size parameter. Its value remains constant at 17 across device sizes. -->
133
+ <integer name="semantic_typography_font_size_label_label1_font_size_responsive">17</integer><!-- 10 - 10 - 15 - 17 Use this label font size when you want your label's font size to change across device sizes. -->
134
+ <integer name="semantic_typography_font_size_label_label2_font_size">15</integer><!-- This variable controls the label2 text style's font size parameter. Its value remains constant at 15. -->
135
+ <integer name="semantic_typography_font_size_label_label3_font_size">12</integer><!-- This token is used in the label3 text style's font size parameter. Its value remains constant at 12 across device sizes. -->
136
+ <integer name="semantic_typography_font_size_label_label4_font_size">8</integer><!-- This token is used in the font size parameter of the label4 text style. The value remains constant at 8. -->
137
+ <integer name="semantic_typography_font_size_subheadline_subheadline1_font_size">28</integer><!-- This token controls the subheadline1 font size parameter. 24 - 24 - 32 - 36 -->
138
+ <integer name="semantic_typography_font_size_title_title1_font_size">28</integer><!-- 22 - 22 - 22 - 28 -- html class stage-block-title__text css var --ressort-header-font-size(sm-md-lg) -->
139
+ <integer name="semantic_typography_font_size_title_title2_font_size">18</integer><!-- 16 - 16 - 18 - 20 - html class stage-block-title__text css var --ressort-header-font-size(sm-md-lg) -->
140
+ <integer name="semantic_typography_font_size_quote_quote_font_size">18</integer><!-- 16 - 16 - 18 - 20 -- This variable is used for controlling the font size of the quote text style. -->
141
+ <integer name="semantic_typography_font_weight_body_body_font_weight_book">400</integer>
142
+ <integer name="semantic_typography_font_weight_body_body_font_weight_bold">700</integer>
143
+ <integer name="semantic_typography_font_weight_callout_callout_font_weight">800</integer>
144
+ <integer name="semantic_typography_font_weight_display_display_font_weight">800</integer>
145
+ <integer name="semantic_typography_font_weight_footnote_footnote_font_weight_bold">700</integer>
146
+ <integer name="semantic_typography_font_weight_footnote_footnote_font_weight_book">400</integer>
147
+ <integer name="semantic_typography_font_weight_headline_headline1_font_weight">700</integer>
148
+ <string name="semantic_typography_font_weight_headline_headline1_font_weight_st">700</string><!-- This variable is a string type variable for controlling not only headline font weight but also the italic style for Sport Bild headlines. -->
149
+ <integer name="semantic_typography_font_weight_headline_headline2_font_weight">700</integer>
150
+ <integer name="semantic_typography_font_weight_headline_headline3_font_weight">700</integer>
151
+ <integer name="semantic_typography_font_weight_headline_headline4_font_weight">600</integer>
152
+ <integer name="semantic_typography_font_weight_kicker_kicker_font_weight">700</integer>
153
+ <string name="semantic_typography_font_weight_kicker_kicker_font_weight_st">700</string>
154
+ <integer name="semantic_typography_font_weight_label_label_font_weight_book">400</integer>
155
+ <integer name="semantic_typography_font_weight_label_label_font_weight_bold">700</integer>
156
+ <integer name="semantic_typography_font_weight_subheadline_subheadline_font_weight">700</integer>
157
+ <integer name="semantic_typography_font_weight_title_title_font_weight">800</integer>
158
+ <integer name="semantic_typography_font_weight_quote_quote_font_weight">800</integer>
159
+ <integer name="semantic_typography_line_height_body_body_line_height">29.75</integer><!-- Figma's font line height currently does not allow for multipliers as is used on current website css var(--body-line-height) -->
160
+ <integer name="semantic_typography_line_height_callout_callout_line_height">28.6</integer>
161
+ <integer name="semantic_typography_line_height_display_display1_line_height">120</integer>
162
+ <integer name="semantic_typography_line_height_display_display2_line_height">64</integer>
163
+ <integer name="semantic_typography_line_height_display_display3_line_height">40</integer>
164
+ <integer name="semantic_typography_line_height_footnote_footnote1_line_height">19.5</integer>
165
+ <integer name="semantic_typography_line_height_footnote_footnote2_line_height">16.9</integer>
166
+ <integer name="semantic_typography_line_height_headline_headline1_line_height">77</integer>
167
+ <integer name="semantic_typography_line_height_headline_headline2_line_height">52.8</integer>
168
+ <integer name="semantic_typography_line_height_headline_headline3_line_height">35.2</integer>
169
+ <integer name="semantic_typography_line_height_headline_headline4_line_height">27.5</integer>
170
+ <integer name="semantic_typography_line_height_kicker_kicker1_line_height">27.5</integer>
171
+ <integer name="semantic_typography_line_height_kicker_kicker2_line_height">23.1</integer>
172
+ <integer name="semantic_typography_line_height_kicker_kicker3_line_height">17.6</integer>
173
+ <integer name="semantic_typography_line_height_kicker_kicker4_line_height">15.4</integer>
174
+ <integer name="semantic_typography_line_height_label_label1_line_height">20.4</integer><!-- This variable is used in the label1 text style's line height parameter. It references branding variables for brand specific line heights. -->
175
+ <integer name="semantic_typography_line_height_label_label1_responsive_line_height">17</integer>
176
+ <integer name="semantic_typography_line_height_label_label2_line_height">16</integer>
177
+ <integer name="semantic_typography_line_height_label_label3_line_height">14.4</integer>
178
+ <integer name="semantic_typography_line_height_label_label4_line_height">10</integer>
179
+ <integer name="semantic_typography_line_height_subheadline_subheadline1_line_height">36.4</integer>
180
+ <integer name="semantic_typography_line_height_title_title1_line_height">33.6</integer>
181
+ <integer name="semantic_typography_line_height_title_title2_line_height">23.4</integer><!-- html class stage-block-title__text css var --ressort-header-font-size(sm-md-lg) -->
182
+ <integer name="semantic_typography_line_height_quote_quote_line_height">23.4</integer><!-- This variable is used in the quote text style line height parameter. -->
183
+ <integer name="semantic_typography_letter_spacing_letter_spacing_positive_lg">3</integer><!-- 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. -->
184
+ <integer name="semantic_typography_letter_spacing_letter_spacing_positive_md">1</integer><!-- 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. -->
185
+ <integer name="semantic_typography_letter_spacing_letter_spacing_positive_sm">0.5</integer><!-- 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. -->
186
+ <integer name="semantic_typography_letter_spacing_letter_spacing_positive_xs">0.25</integer><!-- 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. -->
187
+ <integer name="semantic_typography_letter_spacing_letter_spacing_none">0</integer><!-- 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. -->
188
+ <integer name="semantic_typography_letter_spacing_letter_spacing_negative_xs">-0.25</integer><!-- -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. -->
189
+ <integer name="semantic_typography_letter_spacing_letter_spacing_negative_sm">-0.25</integer><!-- -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. -->
190
+ <integer name="semantic_typography_letter_spacing_letter_spacing_negative_md">-1</integer><!-- -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. -->
191
+ <integer name="semantic_typography_letter_spacing_letter_spacing_negative_lg">-3</integer><!-- -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. -->
192
+ <integer name="semantic_typography_letter_spacing_display_display1_letter_spacing">-2</integer><!-- -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. -->
193
+ <integer name="semantic_typography_letter_spacing_display_display2_letter_spacing">-1</integer><!-- -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. -->
194
+ <integer name="semantic_typography_letter_spacing_display_display3_letter_spacing">-1</integer><!-- -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. -->
195
+ <string name="semantic_visibility_boolean_visilble_desktop_only">true</string><!-- Use for showing elements on desktop viewport sizes only -->
196
+ <string name="semantic_visibility_boolean_visilble_tablet_only">false</string><!-- Use for showing elements on tablet viewport sizes only -->
197
+ <string name="semantic_visibility_boolean_visilble_mobile_only">false</string><!-- Use for showing elements on mobile viewport sizes only -->
198
+ <string name="semantic_visibility_boolean_visilble_above600px">true</string><!-- Use for showing elements on viewport sizes above 600 px -->
199
+ <string name="semantic_visibility_boolean_visilble_below600px">false</string><!-- Use for showing elements on viewport sizes below 600 px -->
200
+ <string name="semantic_visibility_boolean_hide_on_desktop">false</string><!-- Use for hiding elements on desktop viewport sizes only -->
201
+ <string name="semantic_visibility_boolean_hide_on_mobile">true</string><!-- Use for hiding elements on mobile viewport sizes -->
202
+ <string name="semantic_visibility_variant_switch_bp_specific_web">lg</string>
203
+ <string name="semantic_visibility_variant_switch_bp_specific_app">regular</string>
204
+ <string name="semantic_visibility_variant_switch_change_on_lg">lg</string>
205
+ <string name="semantic_visibility_variant_switch_change_on_md">md/lg</string><!-- 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. -->
206
+ <string name="component_accordion_accordion_label_font_family">Lucida Grande</string><!-- This variable exists specifically for changing the accordion font family across brands. It is subject to review. Bild: GothamXNarrow, SpoBi: Inter, Ads: LucindaGrande -->
207
+ <integer name="component_avatar_avatar_article_size">48</integer><!-- 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. -->
208
+ <integer name="component_avatar_avatar_author_page_size">130</integer><!-- 96 - 96 - 130 - 130 This variable is used for controlling the size of the avatar image on author pages. -->
209
+ <integer name="component_avatar_avatar_label_font_size">15</integer><!-- This variable is used on avatar names in article pages. Bild: 16 - 16 - 16 - 18; SpoBi&Ads: 13 - 13 - 13 - 15 -->
210
+ <integer name="component_avatar_avatar_label_line_height">23</integer><!-- 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 -->
211
+ <string name="component_avatar_avatar_font_family">Lucida Grande</string><!-- This variable is used in avatar text styles. It receives values from the Brand Tokens Collection. Bild: GothamXNarrow; SpoBi: Inter; Ads: LucidaGrande -->
212
+ <integer name="component_avatar_avatar_lane_gap_space">24</integer><!-- 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 -->
213
+ <string name="component_avatar_app_avatar_font_family">Lucida Grande</string><!-- This variable is used for setting the font of avatars on iOS and Android platforms. This is subject to review. -->
214
+ <integer name="component_article_article_kicker_font_size">25</integer><!-- This variable is used to control the font size of kickers in the heading section of article pages. 18 - 18 - 22 - 30 -->
215
+ <integer name="component_article_article_headline_font_size">70</integer><!-- 40 - 40 - 72 - 100 - This variable uses the semantic variables headline2 for XS&SM, headline1 for MD&LG -->
216
+ <integer name="component_article_article_image_caption_font_size">16</integer><!-- CSS --article-figure-meta-font-size 16-16-18-18 -->
217
+ <integer name="component_article_article_image_caption_line_height">24</integer><!-- this component level variable references the branding variables -->
218
+ <integer name="component_article_article_meta_font_size">16</integer><!-- 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 -->
219
+ <string name="component_article_article_meta_font_family">Lucida Grande</string><!-- 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. -->
220
+ <integer name="component_article_article_top_margin_space">16</integer><!-- 8 | 8 | 12 | 16 - This space variable is used at the top edge of the article main content bounding box. -->
221
+ <integer name="component_article_aricle_mobile1_col_grid_image_margin_space">72</integer>
222
+ <integer name="component_article_article_headings_stack_space">16</integer><!-- 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 -->
223
+ <integer name="component_article_article_headings_inline_space">16</integer><!-- 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. -->
224
+ <integer name="component_article_article_content_stack_space">32</integer><!-- 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. -->
225
+ <integer name="component_article_article_content_inline_space">162</integer><!-- 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. -->
226
+ <integer name="component_article_article_gallery_a_teaser_width">300</integer><!-- same as standard teaser width size variable -->
227
+ <integer name="component_article_article_image_source_font_size">16</integer><!-- NMT CSS --article-figure-meta-font-size -->
228
+ <integer name="component_article_article_image_source_line_height">24</integer>
229
+ <integer name="component_article_article_image_container_stack_space">16</integer>
230
+ <integer name="component_article_article_image_landscape_inline_space">16</integer>
231
+ <integer name="component_article_article_image_portait_inline_space">162</integer>
232
+ <integer name="component_article_article_infobox_inline_space">32</integer>
233
+ <integer name="component_article_article_infobox_stack_space">32</integer>
234
+ <integer name="component_audio_player_audio_player_font_size">18</integer><!-- 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 -->
235
+ <integer name="component_badge_ad_label_badge_height_size">30</integer><!-- 30 - 30 - 30 - 30 - This variable is used on the Advert rectangular badge that is found above an ad containers. -->
236
+ <integer name="component_badge_badges_inner_stack_space">2</integer><!-- 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. -->
237
+ <integer name="component_badge_badges_inner_inline_space">4</integer><!-- 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. -->
238
+ <string name="component_breadcrumb_breadcrumb_font_family">Lucida Grande</string>
239
+ <integer name="component_breadcrumb_breadcrumb_font_size">12</integer><!-- 15 - 15 - 15 - 12 -- Breadcrumbs have a slightly larger font size on mobile devices compared to when they are rendered on larger desktop devices. -->
240
+ <integer name="component_breadcrumb_breadcrumb_line_height">12</integer><!-- 15 - 15 - 15 - 12 -- Breadcrumbs have a slightly larger font size on mobile devices compared to when they are rendered on larger desktop devices. -->
241
+ <integer name="component_breadcrumb_breadcrumb_arrow_left_inline_space1">3</integer>
242
+ <integer name="component_breadcrumb_breadcrumb_arrow_right_inline_space2">5</integer>
243
+ <integer name="component_breadcrumb_breadcrumb_inline_space">0</integer>
244
+ <integer name="component_breadcrumb_breadcrumb_font_weight">700</integer>
245
+ <integer name="component_breadcrumb_breadcrumb_stack_space">16</integer>
246
+ <integer name="component_breaking_news_breaking_news_container_height_size">56</integer>
247
+ <integer name="component_breaking_news_breaking_news_badge_inline_space">26</integer>
248
+ <integer name="component_breaking_news_breaking_news_badge_titels_stack_space">4</integer>
249
+ <integer name="component_breaking_news_breaking_news_badge_upper_title_font_size">17</integer>
250
+ <integer name="component_breaking_news_breaking_news_badge_upper_title_line_height">12</integer>
251
+ <integer name="component_breaking_news_breaking_news_badge_lower_title_font_size">30</integer>
252
+ <integer name="component_breaking_news_breaking_news_badge_lower_title_line_height">21</integer>
253
+ <integer name="component_breaking_news_breaking_news_scrolling_text_font_size">21</integer>
254
+ <integer name="component_breaking_news_breaking_news_scrolling_text_line_height">24</integer>
255
+ <integer name="component_button_button_label_font_size">15</integer>
256
+ <integer name="component_button_button_label_line_height">15</integer>
257
+ <integer name="component_button_button_content_gap_space">6</integer>
258
+ <integer name="component_button_button_inline_space">16</integer>
259
+ <integer name="component_button_button_stack_space">6</integer>
260
+ <integer name="component_button_button_border_width_size">2</integer>
261
+ <integer name="component_button_button_content_min_height_size">24</integer><!-- This fixed height variable ensures that the button maintains a consistent height, even when the icon is not active. -->
262
+ <integer name="component_button_partner_link_button_label_font_size">18</integer><!-- Use this variable for controlling the font size of partner buttons. 16 - 16 - 16 - 18 -->
263
+ <integer name="component_button_partner_link_button_inline_space">8</integer>
264
+ <integer name="component_button_partner_link_button_label_height_size">48</integer>
265
+ <integer name="component_button_button_border_radius">8</integer>
266
+ <integer name="component_cards_search_result_card_image_width_size">260</integer>
267
+ <integer name="component_cards_search_result_card_image_height_size_stacked">189</integer>
268
+ <integer name="component_cards_newsticker_image_card_width_size">206</integer>
269
+ <integer name="component_carousel_gallery_teaser_title_bottom_space">36</integer><!-- This token is used to create more bottom padding space on system teaser headlines inside the gallery to avoid overlapping with the pagination. -->
270
+ <integer name="component_carousel_gallery_teaser_app_gap_space">8</integer><!-- This token is used to create more bottom padding space on system teaser headlines inside the gallery to avoid overlapping with the pagination. -->
271
+ <integer name="component_carousel_app_epaper_carousel_item_default_width">172</integer>
272
+ <integer name="component_carousel_app_epaper_carousel_item_focus_width">240</integer>
273
+ <integer name="component_carousel_app_epaper_carouse_beilage_item_width">172</integer>
274
+ <integer name="component_carousel_standard_teaser_gallery_teaser_width_web">300</integer>
275
+ <integer name="component_carousel_standard_teaser_gallery_teaser_width_app">464</integer>
276
+ <integer name="component_chips_chips_font_size">18</integer><!-- 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 -->
277
+ <integer name="component_chips_chips_inline_space">12</integer>
278
+ <integer name="component_chips_chips_stack_space">8</integer>
279
+ <integer name="component_datepicker_datepicker_item_day_width_size">44</integer>
280
+ <integer name="component_datepicker_datepicker_item_year_width_size">77</integer>
281
+ <integer name="component_datepicker_datepicker_item_height_size">44</integer>
282
+ <integer name="component_drawers_mobile_menu_drawer_stack_space">20</integer>
283
+ <integer name="component_drawers_mobile_menu_drawer_left_inline_space">20</integer>
284
+ <integer name="component_drawers_mobile_menu_drawer_right_inline_space">16</integer>
285
+ <integer name="component_drawers_mobile_menu_drawer_max_width_size">400</integer>
286
+ <integer name="component_dropdown_drop_down_item_stack_space">8</integer>
287
+ <integer name="component_dropdown_drop_down_item_inline_space">16</integer>
288
+ <integer name="component_dropdown_drop_down_border_radius">4</integer>
289
+ <string name="component_footer_footer_font_family">Gotham XNarrow</string>
290
+ <integer name="component_footer_footer_font_size">11</integer><!-- 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. -->
291
+ <integer name="component_footer_footer_line_height">14</integer>
292
+ <integer name="component_footer_footer_font_size_user_offer_pages">18</integer>
293
+ <integer name="component_footer_footer_line_height_user_offer_pages">26</integer>
294
+ <integer name="component_icon_icon_size">24</integer>
295
+ <integer name="component_icon_icon_size_embedd_media">40</integer>
296
+ <integer name="component_info_element_info_element_teaser_badge_margin_space">8</integer>
297
+ <integer name="component_info_element_info_element_teaser_image_height_size">133</integer>
298
+ <integer name="component_info_element_info_element_teaser_image_width_size">236</integer>
299
+ <integer name="component_info_element_info_element_teaser_badge_height_size">24</integer>
300
+ <integer name="component_inputfield_input_field_font_size">16</integer><!-- 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 -->
301
+ <string name="component_inputfield_input_field_font_family">Lucida Grande</string>
302
+ <integer name="component_inputfield_input_field_inline_space">16</integer>
303
+ <integer name="component_inputfield_input_field_stack_space">6</integer>
304
+ <integer name="component_inputfield_input_field_message_gap_space">4</integer>
305
+ <integer name="component_inputfield_input_field_i_message_inline_space">16</integer>
306
+ <integer name="component_inputfield_input_field_mini_label_inline_space">4</integer>
307
+ <integer name="component_inputfield_input_field_height_size">36</integer>
308
+ <integer name="component_inputfield_hey_input_container_inline_space">16</integer>
309
+ <integer name="component_liveticker_live_ticker_app_card_height_size">128</integer>
310
+ <integer name="component_liveticker_live_ticker_app_card_width_size">300</integer>
311
+ <string name="component_liveticker_time_stamp_font_family">Gotham XNarrow</string>
312
+ <integer name="component_liveticker_live_tickerheadline_font_weight">600</integer>
313
+ <integer name="component_liveticker_live_ticker_headlines_font_size">32</integer><!-- This variable is used for the font size of live ticker headlines. 22 - 22 - 32 - 32 -->
314
+ <integer name="component_liveticker_live_ticker_time_stamp_font_size">16</integer><!-- This variable is used for the live ticker time stamp font size. 14 - 14 - 16 - 16 -->
315
+ <integer name="component_liveticker_live_ticker_time_headline_stack_space">4</integer>
316
+ <integer name="component_liveticker_live_ticker_slider_item_width_max_size">537</integer>
317
+ <integer name="component_mediaplayer_audio_player_header_stack_space">56</integer>
318
+ <integer name="component_mediaplayer_podcast_play_button_size">48</integer>
319
+ <integer name="component_mediaplayer_vid_player_bottom_bar_gap_space">16</integer>
320
+ <string name="component_mediaplayer_video_time_badge_font_family">Lucida Grande</string>
321
+ <integer name="component_mediaplayer_vid_player_control_button_size">42</integer>
322
+ <integer name="component_mediaplayer_vid_player_control_button_icon_size_hover">28</integer>
323
+ <integer name="component_mediaplayer_vid_player_timecode_font_size">18</integer>
324
+ <integer name="component_mediaplayer_vid_player_timecode_container_min_width_size">58</integer>
325
+ <integer name="component_mediaplayer_vid_player_progress_bar_container_height_size">42</integer>
326
+ <integer name="component_mediaplayer_vid_player_unmute_button_width_size">220</integer>
327
+ <integer name="component_menu_menu_link_lane_height_size">48</integer>
328
+ <integer name="component_menu_menu_logo_default_size">148</integer>
329
+ <integer name="component_menu_menu_logo_scrolled_size">56</integer>
330
+ <integer name="component_menu_menu_utillink_item_height_size">48</integer>
331
+ <integer name="component_menu_menu_item_util_font_size">12</integer>
332
+ <integer name="component_menu_menu_item_font_size">15</integer><!-- This variable is used on the menu link lane and on the mobile side menu drawer. -->
333
+ <integer name="component_menu_menu_special_navi_item_height_size">56</integer>
334
+ <integer name="component_menu_menu_item_space">8</integer>
335
+ <integer name="component_menu_menu_link_item_inline_space">4</integer>
336
+ <integer name="component_menu_menu_item_util_stack_space">10</integer>
337
+ <integer name="component_menu_sub_nav_bar_height_size">42</integer>
338
+ <integer name="component_menu_menu_utility_links_container_height_size">100</integer>
339
+ <integer name="component_menu_menu_top_stack_space">12</integer>
340
+ <integer name="component_menu_menu_bottom_stack_space">0</integer>
341
+ <integer name="component_menu_menu_left_inline_space">16</integer>
342
+ <integer name="component_menu_menu_right_inline_space">16</integer>
343
+ <integer name="component_menu_menu_utility_links_gap_space">32</integer>
344
+ <integer name="component_menu_menu_utility_links_divider_height_size">48</integer>
345
+ <color name="component_menu_menu_shadow_visibility">#00000000</color><!-- 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 -->
346
+ <color name="component_menu_hey_input_shadow_visibility">#1a000000</color><!-- 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 -->
347
+ <integer name="component_menu_i_o_sapp_top_bar_height_size">48</integer>
348
+ <integer name="component_menu_i_o_sapp_top_bar_left_inline_space">19</integer>
349
+ <integer name="component_menu_i_o_sapp_top_bar_right_inline_space">19</integer>
350
+ <integer name="component_menu_app_topbar_title_font_size">14</integer>
351
+ <integer name="component_menu_app_topbar_stage_title_height">17</integer>
352
+ <integer name="component_newsticker_news_ticker_app_card_height_size">150</integer>
353
+ <integer name="component_newsticker_news_ticker_app_card_width_size">300</integer>
354
+ <string name="component_newsticker_news_ticker_time_font_family">Lucida Grande</string>
355
+ <integer name="component_newsticker_news_ticker_time_font_weight">700</integer>
356
+ <integer name="component_newsticker_news_ticker_time_font_size">18</integer><!-- similar to kicker3 values - 16 - 16 - 16 - 18 -->
357
+ <integer name="component_newsticker_news_ticker_time_line_height">23.4</integer><!-- 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. -->
358
+ <integer name="component_newsticker_news_ticker_badges_inline_space">16</integer>
359
+ <integer name="component_newsticker_news_ticker_entries_stack_space">22</integer>
360
+ <integer name="component_newsticker_news_ticker_entries_left_inline_space">22</integer>
361
+ <integer name="component_newsticker_news_ticker_content_stack_space">4</integer>
362
+ <integer name="component_newsticker_news_ticker_kicker_inner_inline_space">4</integer>
363
+ <integer name="component_newsticker_news_ticker_kicker_inner_stack_space">2</integer>
364
+ <integer name="component_newsticker_news_ticker_time_kicker_stack_space">6</integer>
365
+ <integer name="component_newsticker_news_ticker_titles_inline_space">30</integer>
366
+ <integer name="component_newsticker_news_ticker_skeleton_bottom_space">0</integer>
367
+ <integer name="component_newsticker_news_ticker_red_dot_size">16</integer>
368
+ <integer name="component_newsticker_news_ticker_line_inline_space">8</integer>
369
+ <integer name="component_pagination_gallery_pagination_item_height_size">4</integer>
370
+ <integer name="component_pagination_gallery_pagination_container_web_inline_space">12</integer><!-- 8 - 8 - 12 - 12 - this component level variable references the inlineSpaceConst semantic variables; SM for smaller devices, MD for larger devices -->
371
+ <integer name="component_pagination_gallery_pagination_container_app_inline_space">12</integer>
372
+ <integer name="component_pagination_gallery_pagination_container_stack_space">16</integer><!-- 12 - 12 - 16 - 16 - this component level variable references the semantic -->
373
+ <integer name="component_pagination_scroll_bar_thickness_size">8</integer>
374
+ <integer name="component_paywall_paywall_card_max_width_size">346</integer>
375
+ <integer name="component_paywall_paywall_card_price_tag_font_size">64</integer><!-- This variable is used on the paywall card price tag. 64 constant -->
376
+ <integer name="component_paywall_paywall_card_price_tag_line_height">64</integer>
377
+ <integer name="component_paywall_paywall_card_price_note_font_size">40</integer><!-- This variable is used on the paywall card text under the price tag. 40 - 40 - 40 - 40 -->
378
+ <integer name="component_paywall_paywall_card_price_note_line_height">40</integer>
379
+ <integer name="component_paywall_paywall_container_gap_space">-48</integer>
380
+ <integer name="component_paywall_paywall_header_bottom_stack_space">80</integer>
381
+ <integer name="component_quotes_quote_container_inline_space">28</integer>
382
+ <integer name="component_quotes_quote_content_gap_space">48</integer>
383
+ <integer name="component_quotes_quote_container_stack_space">32</integer>
384
+ <integer name="component_quotes_quote_quotation_marks_font_size">36</integer>
385
+ <integer name="component_radio_buttons_radio_selector_size">20</integer>
386
+ <integer name="component_radio_buttons_radio_selector_dot_active_size">12</integer>
387
+ <integer name="component_search_search_result_badge_height_size">18</integer>
388
+ <integer name="component_section_title_section_title_inner_stack_bottom_space">12</integer>
389
+ <integer name="component_section_title_section_title_arrow_inline_space">5</integer><!-- 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. -->
390
+ <integer name="component_section_title_section_title_arrow_inline_space_active">8</integer><!-- 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. -->
391
+ <integer name="component_section_title_section_title_height_size">40</integer>
392
+ <integer name="component_separators_separator_thickness_size">2</integer>
393
+ <integer name="component_skeletons_headlines_skeleton_image_placeholder_max_width">160</integer>
394
+ <integer name="component_skeletons_article_skeleton_image_inline_space">48</integer>
395
+ <integer name="component_skeletons_article_skeleton_text_inline_space">48</integer>
396
+ <integer name="component_skeletons_article_text_skeleton_height_size">720</integer>
397
+ <integer name="component_special_navi_special_navi_inline_space">32</integer>
398
+ <integer name="component_sliders_slider_progress_bar_idle_height_size">4</integer>
399
+ <integer name="component_sliders_slider_progress_bar_hover_height_size">8</integer>
400
+ <integer name="component_sliders_slider_progress_inactive_height_size">2</integer>
401
+ <integer name="component_sliders_vid_player_progress_bar_height_size">12</integer>
402
+ <integer name="component_spinners_video_spinner_size">80</integer>
403
+ <integer name="component_spinners_video_spinner_size0_5x">40</integer>
404
+ <integer name="component_spinners_video_spinner_stroke_size">4</integer>
405
+ <integer name="component_tabs_tab_label_font_size">16</integer><!-- 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. -->
406
+ <integer name="component_tabs_tab_label_font_size_line">16</integer><!-- 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. -->
407
+ <integer name="component_tabs_ios_tabbar_height_size">49</integer>
408
+ <integer name="component_tabs_android_tabbar_height_size">74</integer>
409
+ <integer name="component_tabs_apps_tabs_label_font_size">16</integer><!-- 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. -->
410
+ <integer name="component_tabs_apps_tabs_label_line_height">23.4</integer><!-- 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. -->
411
+ <integer name="component_tabs_top_bar_tab_item_height_size">44</integer>
412
+ <integer name="component_table_table_column_width_size0_5x">72</integer>
413
+ <integer name="component_table_table_column_width_size0_75x">100</integer>
414
+ <integer name="component_table_table_column_width_size1x">140</integer>
415
+ <integer name="component_table_table_column_width_size1_5x">180</integer>
416
+ <integer name="component_table_table_column_width_size2x">220</integer>
417
+ <integer name="component_table_table_column_width_size2_5x">240</integer>
418
+ <integer name="component_table_table_column_width_size3x">280</integer>
419
+ <integer name="component_table_table_item_max_width_size">224</integer>
420
+ <integer name="component_teaser_a_teaser_a_teaser_kicker_font_size">21</integer><!-- 16 - 16 - 22 - 24 This variable references the semantic variables kicker3fontsize and kicker2fontsize. At the 600px breakpoint smaller devices use the kicker3 variable -->
421
+ <integer name="component_teaser_a_teaser_a_teaser_kicker_line_height">21</integer>
422
+ <integer name="component_teaser_a_teaser_a_teaser_headline_font_size">48</integer><!-- This variable references the semantic variables headline3 (XS&SM) and headline2 (MD&LG). 28 - 28 - 48 - 64 -->
423
+ <integer name="component_teaser_a_teaser_a_teaser_headline_line_height">52.8</integer>
424
+ <integer name="component_teaser_a_teaser_a_teaser_title_inline_space">12</integer>
425
+ <integer name="component_teaser_b_teaser_b_teaser_title_inline_space">8</integer>
426
+ <integer name="component_teaser_bild_play_bild_play_teaser_width_size">193</integer>
427
+ <integer name="component_teaser_m_q_teaser_m_q_teaser_headline_font_size">32</integer><!-- XS-headline4FontSize:22 // SM-headline4FontSize:22 // MD-headline3FontSize:36 // LG-headline3FontSize:40 -->
428
+ <integer name="component_teaser_m_q_teaser_m_q_teaser_headline_line_height">35.2</integer>
429
+ <integer name="component_teaser_m_q_teaser_m_q_teaser_headline_font_weight">700</integer>
430
+ <integer name="component_teaser_m_q_teaser_mq_teaser_title_inline_space">8</integer>
431
+ <integer name="component_teaser_teaser_badges_height_size_lg">40</integer><!-- This token is for controling the height of badges that are inside of teasers. 32 - 32 - 32 - 40 -->
432
+ <integer name="component_teaser_teaser_badges_height_size_sm">32</integer>
433
+ <integer name="component_teaser_teaser_badges_margin_space">8</integer><!-- This variable is used for creating space around the outside of a subscription badge or video icon badge. -->
434
+ <integer name="component_teaser_teaser_kicker_bg_inline_space">6</integer>
435
+ <integer name="component_teaser_teaser_kicker_bg_stack_space">2</integer>
436
+ <integer name="component_teaser_q_teaser_quad_kicker_font_size">21</integer>
437
+ <integer name="component_teaser_q_teaser_quad_headline_font_size">70</integer><!-- This component level variable is used on the quad teaser headline. It references the semantic level variable headline1. 48 - 48 - 72 - 100 -->
438
+ <integer name="component_teaser_q_teaser_quad_headline_line_height">77</integer>
439
+ <integer name="component_teaser_q_teaser_q_teaser_title_inline_space">12</integer>
440
+ <integer name="component_teaser_teaser_layout_grid_space">16</integer>
441
+ <integer name="component_teaser_std_teaser_std_teaser_badges_margin_space">8</integer><!-- This variable is used for creating space around the outside of a subscription badge or video icon badge. -->
442
+ <integer name="component_teaser_std_teaser_std_teaser_image_title_gap_space">6</integer>
443
+ <integer name="component_teaser_std_teaser_std_teaser_kicker_headline_stack_space">2</integer><!-- 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 -->
444
+ <integer name="component_teaser_super_a_super_a_teaser_title_inline_space">16</integer><!-- 16 - 16 - 16 - 16 -->
445
+ <integer name="component_teaser_teaser_title_inline_left_space">0</integer>
446
+ <integer name="component_teaser_teaser_title_stack_space">6</integer>
447
+ <integer name="component_teaser_teaser_title_gap_space">4</integer>
448
+ <integer name="component_teaser_teaser_title_bottom_stack_space">16</integer>
449
+ <integer name="component_toggle_switch_app_toggle_item_label_font_size">18</integer><!-- This variable is used on labels in list items with toggle switches found in app preferences. 14 - 14 - 16 - 18 -->
450
+ <integer name="component_toggle_switch_app_toggle_item_label_line_height">18.2</integer><!-- This variable is used on labels in list items with toggle switches found in app preferences. 14.1 - 14.1 - 16.2 - 18.2 -->
451
+ <integer name="component_video_video_badge_time_line_height">23.8</integer>
452
+ <integer name="component_video_video_time_badge_font_size">18</integer><!-- 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. -->
453
+ <integer name="component_video_vertical_video_mock_headline_font_size">32</integer>
454
+ <integer name="component_video_video_frame_inline_space">16</integer>
455
+ <integer name="component_video_video_red_play_icon_height_size">18</integer><!-- This variable is used for changing the red play icon inside the white square. -->
456
+ <integer name="component_video_video_red_play_icon_width_size">14</integer>
457
+ <integer name="component_video_video_skeleton_container_height">464</integer>
458
+ <integer name="component_video_video_time_badge_size">40</integer><!-- 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. -->
459
+ <integer name="component_video_video_time_badge_corner_size">2</integer><!-- 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. -->
460
+ <integer name="component_video_video_ad_badge_font_size">16</integer><!-- 14 - 14 - 16 - 16 -- This variable is used in the videoAdBadge font size parameter. -->
461
+ <string name="component_d_sys_docs_specs_font_family">Gotham</string><!-- This variable is used only for texts and labels that form part of this design system's documentation. -->
462
+ <integer name="component_d_sys_docs_1column_mobile">656</integer><!-- This variable is used only for this design system's component tests. -->
463
+ <integer name="component_d_sys_docs_d_sys_docs_width_size">1440</integer>
464
+ <integer name="component_d_sys_docs_ds_caption_stack_space0_5x">8</integer><!-- This variable is used in documentation pages that have small caption or lables along with a UI component documented. 4 - 4 - 6 - 8 -->
465
+ <integer name="component_d_sys_docs_ds_caption_stack_space1x">16</integer>
466
+ <integer name="component_d_sys_docs_ds_main_container_space">68</integer><!-- This variable is used on documentation pages. This is an alternative variable to the main container max width variable. 0 - 0 - 68 - 68 -->
467
+ <integer name="component_d_sys_docs_foundations_banner_height_size">140</integer><!-- 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 -->
468
+ <integer name="component_d_sys_docs_main_content_stage_size">1024</integer><!-- 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 -->
469
+ <integer name="component_d_sys_docs_thin_banner_vertical_height_size">186</integer><!-- 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 -->
470
+ <integer name="component_d_sys_docs_bild_design_frame_space">64</integer><!-- Variable used in spacing parameters of bild.design webpage mockups. move to bild.design group maybe -->
471
+ <integer name="component_d_sys_docs_doc_header_height_size">180</integer><!-- This variable is used on documentation headers that contain info about platfroms and component names. 144 - 144 - 160 - 180 -->
472
+ <string name="breakpoint_name">lg</string>
473
+ </resources>