@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.
- package/dist/android/res/values/base/primitive_color_value.xml +101 -0
- package/dist/android/res/values/base/primitive_font_value.xml +50 -0
- package/dist/android/res/values/base/primitive_size_value.xml +56 -0
- package/dist/android/res/values/base/primitive_space_value.xml +32 -0
- package/dist/android/res/values/density/density_compact.xml +15 -0
- package/dist/android/res/values/density/density_default.xml +15 -0
- package/dist/android/res/values/density/density_spacious.xml +15 -0
- package/dist/android/res/values/mapping/brand_advertorial.xml +278 -0
- package/dist/android/res/values/mapping/brand_bild.xml +278 -0
- package/dist/android/res/values/mapping/brand_color_bild.xml +75 -0
- package/dist/android/res/values/mapping/brand_color_sportbild.xml +75 -0
- package/dist/android/res/values/mapping/brand_sportbild.xml +278 -0
- package/dist/android/res/values/semantic/advertorial/breakpoints/breakpoint_advertorial_lg.xml +473 -0
- package/dist/android/res/values/semantic/advertorial/breakpoints/breakpoint_advertorial_md.xml +473 -0
- package/dist/android/res/values/semantic/advertorial/breakpoints/breakpoint_advertorial_sm.xml +473 -0
- package/dist/android/res/values/semantic/advertorial/breakpoints/breakpoint_advertorial_xs.xml +473 -0
- package/dist/android/res/values/semantic/advertorial/color/color_advertorial_dark.xml +271 -0
- package/dist/android/res/values/semantic/advertorial/color/color_advertorial_light.xml +271 -0
- package/dist/android/res/values/semantic/bild/breakpoints/breakpoint_bild_lg.xml +473 -0
- package/dist/android/res/values/semantic/bild/breakpoints/breakpoint_bild_md.xml +473 -0
- package/dist/android/res/values/semantic/bild/breakpoints/breakpoint_bild_sm.xml +473 -0
- package/dist/android/res/values/semantic/bild/breakpoints/breakpoint_bild_xs.xml +473 -0
- package/dist/android/res/values/semantic/bild/color/color_bild_dark.xml +271 -0
- package/dist/android/res/values/semantic/bild/color/color_bild_light.xml +271 -0
- package/dist/android/res/values/semantic/sportbild/breakpoints/breakpoint_sportbild_lg.xml +473 -0
- package/dist/android/res/values/semantic/sportbild/breakpoints/breakpoint_sportbild_md.xml +473 -0
- package/dist/android/res/values/semantic/sportbild/breakpoints/breakpoint_sportbild_sm.xml +473 -0
- package/dist/android/res/values/semantic/sportbild/breakpoints/breakpoint_sportbild_xs.xml +473 -0
- package/dist/android/res/values/semantic/sportbild/color/color_sportbild_dark.xml +271 -0
- package/dist/android/res/values/semantic/sportbild/color/color_sportbild_light.xml +271 -0
- package/dist/flutter/base/primitive_color_value.dart +109 -0
- package/dist/flutter/base/primitive_font_value.dart +58 -0
- package/dist/flutter/base/primitive_size_value.dart +64 -0
- package/dist/flutter/base/primitive_space_value.dart +40 -0
- package/dist/flutter/density/density_compact.dart +23 -0
- package/dist/flutter/density/density_default.dart +23 -0
- package/dist/flutter/density/density_spacious.dart +23 -0
- package/dist/flutter/mapping/brand_advertorial.dart +286 -0
- package/dist/flutter/mapping/brand_bild.dart +286 -0
- package/dist/flutter/mapping/brand_color_bild.dart +83 -0
- package/dist/flutter/mapping/brand_color_sportbild.dart +83 -0
- package/dist/flutter/mapping/brand_sportbild.dart +286 -0
- package/dist/flutter/semantic/advertorial/breakpoints/breakpoint_advertorial_lg.dart +499 -0
- package/dist/flutter/semantic/advertorial/breakpoints/breakpoint_advertorial_md.dart +499 -0
- package/dist/flutter/semantic/advertorial/breakpoints/breakpoint_advertorial_sm.dart +499 -0
- package/dist/flutter/semantic/advertorial/breakpoints/breakpoint_advertorial_xs.dart +499 -0
- package/dist/flutter/semantic/advertorial/color/color_advertorial_dark.dart +435 -0
- package/dist/flutter/semantic/advertorial/color/color_advertorial_light.dart +435 -0
- package/dist/flutter/semantic/bild/breakpoints/breakpoint_bild_lg.dart +499 -0
- package/dist/flutter/semantic/bild/breakpoints/breakpoint_bild_md.dart +499 -0
- package/dist/flutter/semantic/bild/breakpoints/breakpoint_bild_sm.dart +499 -0
- package/dist/flutter/semantic/bild/breakpoints/breakpoint_bild_xs.dart +499 -0
- package/dist/flutter/semantic/bild/color/color_bild_dark.dart +435 -0
- package/dist/flutter/semantic/bild/color/color_bild_light.dart +435 -0
- package/dist/flutter/semantic/sportbild/breakpoints/breakpoint_sportbild_lg.dart +499 -0
- package/dist/flutter/semantic/sportbild/breakpoints/breakpoint_sportbild_md.dart +499 -0
- package/dist/flutter/semantic/sportbild/breakpoints/breakpoint_sportbild_sm.dart +499 -0
- package/dist/flutter/semantic/sportbild/breakpoints/breakpoint_sportbild_xs.dart +499 -0
- package/dist/flutter/semantic/sportbild/color/color_sportbild_dark.dart +435 -0
- package/dist/flutter/semantic/sportbild/color/color_sportbild_light.dart +435 -0
- package/dist/ios/base/PrimitiveColorValue.swift +106 -0
- package/dist/ios/base/PrimitiveFontValue.swift +55 -0
- package/dist/ios/base/PrimitiveSizeValue.swift +61 -0
- package/dist/ios/base/PrimitiveSpaceValue.swift +37 -0
- package/dist/ios/density/DensityCompact.swift +20 -0
- package/dist/ios/density/DensityDefault.swift +20 -0
- package/dist/ios/density/DensitySpacious.swift +20 -0
- package/dist/ios/mapping/BrandAdvertorial.swift +283 -0
- package/dist/ios/mapping/BrandBild.swift +283 -0
- package/dist/ios/mapping/BrandColorBild.swift +80 -0
- package/dist/ios/mapping/BrandColorSportbild.swift +80 -0
- package/dist/ios/mapping/BrandSportbild.swift +283 -0
- package/dist/ios/semantic/advertorial/breakpoints/BreakpointAdvertorialLg.swift +496 -0
- package/dist/ios/semantic/advertorial/breakpoints/BreakpointAdvertorialMd.swift +496 -0
- package/dist/ios/semantic/advertorial/breakpoints/BreakpointAdvertorialSm.swift +496 -0
- package/dist/ios/semantic/advertorial/breakpoints/BreakpointAdvertorialXs.swift +496 -0
- package/dist/ios/semantic/advertorial/color/ColorAdvertorialDark.swift +432 -0
- package/dist/ios/semantic/advertorial/color/ColorAdvertorialLight.swift +432 -0
- package/dist/ios/semantic/bild/breakpoints/BreakpointBildLg.swift +496 -0
- package/dist/ios/semantic/bild/breakpoints/BreakpointBildMd.swift +496 -0
- package/dist/ios/semantic/bild/breakpoints/BreakpointBildSm.swift +496 -0
- package/dist/ios/semantic/bild/breakpoints/BreakpointBildXs.swift +496 -0
- package/dist/ios/semantic/bild/color/ColorBildDark.swift +432 -0
- package/dist/ios/semantic/bild/color/ColorBildLight.swift +432 -0
- package/dist/ios/semantic/sportbild/breakpoints/BreakpointSportbildLg.swift +496 -0
- package/dist/ios/semantic/sportbild/breakpoints/BreakpointSportbildMd.swift +496 -0
- package/dist/ios/semantic/sportbild/breakpoints/BreakpointSportbildSm.swift +496 -0
- package/dist/ios/semantic/sportbild/breakpoints/BreakpointSportbildXs.swift +496 -0
- package/dist/ios/semantic/sportbild/color/ColorSportbildDark.swift +432 -0
- package/dist/ios/semantic/sportbild/color/ColorSportbildLight.swift +432 -0
- package/dist/manifest.json +87 -3
- package/package.json +1 -1
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
|
|
3
|
+
<!--
|
|
4
|
+
Do not edit directly, this file was auto-generated.
|
|
5
|
+
-->
|
|
6
|
+
<resources>
|
|
7
|
+
<string name="global_typography_font_family_display_font_family">Gotham</string><!-- Bild: Gotham | SpoBi: AntennaCond | Ads: LucidaGrande | This variable is used in the display text style font family parameter. -->
|
|
8
|
+
<string name="global_typography_font_family_headline_font_family">Gotham Condensed</string><!-- Bild: GothamCond | SpoBi: AntennaExtraCond | Ads: LucidaGrande | This variable is used in the headlines text style font family parameter. -->
|
|
9
|
+
<string name="global_typography_font_family_subheadline_font_family">Gotham Condensed</string><!-- Bild: GothamCond | SpoBi: AntennaCond | Ads: LucidaGrande | This variable is used in the subheadlines text style font family parameter. -->
|
|
10
|
+
<string name="global_typography_font_family_kicker_font_family">Gotham XNarrow</string><!-- Bild: GothamXNarrow | SpoBi: AntennaExtraCond | Ads: LucidaGrande | This variable is used in the kickers text styles font family parameter. -->
|
|
11
|
+
<string name="global_typography_font_family_title_font_family">Gotham</string><!-- Bild: Gotham | SpoBi: AntennaCond | Ads: LucidaGrande | This variable is used in the titles text style font family parameter. -->
|
|
12
|
+
<string name="global_typography_font_family_callout_font_family">Gotham</string><!-- Bild: Gotham | SpoBi: AntennaCond | Ads: LucidaGrande | This variable is used in the callouts text style font family parameter. -->
|
|
13
|
+
<string name="global_typography_font_family_body_font_family">Gotham XNarrow</string><!-- Bild: GothamXNarrow | SpoBi: Inter | Ads: LucidaGrande | This variable is used in the body text style font family parameter. -->
|
|
14
|
+
<string name="global_typography_font_family_footnote_font_family">Gotham XNarrow</string><!-- Bild: GothamXNarrow | SpoBi: Inter | Ads: LucidaGrande | This variable is used in the footnotes text style font family parameter. -->
|
|
15
|
+
<string name="global_typography_font_family_label_font_family">Gotham XNarrow</string><!-- Bild: GothamXNarrow | SpoBi: AntennaExtraCond | Ads: LucidaGrande | This variable is used in the labels text styles font family parameter. -->
|
|
16
|
+
<string name="global_typography_font_family_quote_font_family">Gotham</string><!-- Bild: Gotham | SpoBi: AntennaCond | Ads: LucidaGrande | This variable is used in the quotes text style font family parameter. -->
|
|
17
|
+
<integer name="global_typography_font_size_display_display1_font_size_xs">40</integer><!-- Bild: 40 | SpoBi: 38 | Ads: 39 | This variable is used in the display1 text style font size parameter for small device sizes. -->
|
|
18
|
+
<integer name="global_typography_font_size_display_display1_font_size_sm">40</integer><!-- Bild: 40 | SpoBi: 38 | Ads: 39 | This variable is used in the display1 text style font size parameter for small device sizes. -->
|
|
19
|
+
<integer name="global_typography_font_size_display_display1_font_size_md">72</integer><!-- Bild: 72 | SpoBi: 68 | Ads: 70 | This variable is used in the display1 text style font size parameter for medium device sizes. -->
|
|
20
|
+
<integer name="global_typography_font_size_display_display1_font_size_lg">120</integer><!-- Bild: 120 | SpoBi: 114 | Ads: 116 | This variable is used in the display1 text style font size parameter for large device sizes. -->
|
|
21
|
+
<integer name="global_typography_font_size_display_display2_font_size_xs">36</integer><!-- Bild: 36 | SpoBi: 34 | Ads: 35 | This variable is used in the display2 text style font size parameter for small device sizes. -->
|
|
22
|
+
<integer name="global_typography_font_size_display_display2_font_size_sm">36</integer><!-- Bild: 36 | SpoBi: 34 | Ads: 35 | This variable is used in the display2 text style font size parameter for small device sizes. -->
|
|
23
|
+
<integer name="global_typography_font_size_display_display2_font_size_md">42</integer><!-- Bild: 42 | SpoBi: 40 | Ads: 41 | This variable is used in the display2 text style font size parameter for medium device sizes. -->
|
|
24
|
+
<integer name="global_typography_font_size_display_display2_font_size_lg">64</integer><!-- Bild: 64 | SpoBi: 61 | Ads: 62 | This variable is used in the display2 text style font size parameter for large device sizes. -->
|
|
25
|
+
<integer name="global_typography_font_size_display_display3_font_size_xs">28</integer><!-- Bild: 28 | SpoBi: 27 | Ads: 27 | This variable is used in the display3 text style font size parameter for small device sizes. -->
|
|
26
|
+
<integer name="global_typography_font_size_display_display3_font_size_sm">28</integer><!-- Bild: 28 | SpoBi: 27 | Ads: 27 | This variable is used in the display3 text style font size parameter for small device sizes. -->
|
|
27
|
+
<integer name="global_typography_font_size_display_display3_font_size_md">32</integer><!-- Bild: 32 | SpoBi: 30 | Ads: 31 | This variable is used in the display3 text style font size parameter for medium device sizes. -->
|
|
28
|
+
<integer name="global_typography_font_size_display_display3_font_size_lg">40</integer><!-- Bild: 40 | SpoBi: 38 | Ads: 39 | This variable is used in the display3 text style font size parameter for large device sizes. -->
|
|
29
|
+
<string name="global_typography_font_size_headline_headline_text_align">center</string><!-- This variable is used for controlling the alignment of headlines across brands. current online css example var: --headline-text-align-lg -->
|
|
30
|
+
<integer name="global_typography_font_size_headline_headline1_font_size_xs">48</integer><!-- Bild: 48 | SpoBi: 42 | Ads: 36 | This variable is used in the headline1 text style font size parameter for small device sizes. -->
|
|
31
|
+
<integer name="global_typography_font_size_headline_headline1_font_size_sm">48</integer><!-- Bild: 48 | SpoBi: 42 | Ads: 36 | This variable is used in the headline1 text style font size parameter for small device sizes. -->
|
|
32
|
+
<integer name="global_typography_font_size_headline_headline1_font_size_md">72</integer><!-- Bild: 72 | SpoBi: 60 | Ads: 54 | This variable is used in the headline1 text style font size parameter for medium device sizes. -->
|
|
33
|
+
<integer name="global_typography_font_size_headline_headline1_font_size_lg">100</integer><!-- Bild: 100 | SpoBi: 80 | Ads: 70 | This variable is used in the headline1 text style font size parameter for large device sizes. -->
|
|
34
|
+
<integer name="global_typography_font_size_headline_headline2_font_size_xs">40</integer><!-- Bild: 40 | SpoBi: 42 | Ads: 30 | This variable is used in the headline2 text style font size parameter for small device sizes. -->
|
|
35
|
+
<integer name="global_typography_font_size_headline_headline2_font_size_sm">40</integer><!-- Bild: 40 | SpoBi: 42 | Ads: 30 | This variable is used in the headline2 text style font size parameter for small device sizes. -->
|
|
36
|
+
<integer name="global_typography_font_size_headline_headline2_font_size_md">48</integer><!-- Bild: 48 | SpoBi: 44 | Ads: 36 | This variable is used in the headline2 text style font size parameter for medium device sizes. -->
|
|
37
|
+
<integer name="global_typography_font_size_headline_headline2_font_size_lg">64</integer><!-- Bild: 64 | SpoBi: 50 | Ads: 48 | This variable is used in the headline2 text style font size parameter for large device sizes. -->
|
|
38
|
+
<integer name="global_typography_font_size_headline_headline3_font_size_xs">28</integer><!-- Bild: 28 | SpoBi: 30 | Ads: 24 | This variable is used in the headline3 text style font size parameter for small device sizes. -->
|
|
39
|
+
<integer name="global_typography_font_size_headline_headline3_font_size_sm">28</integer><!-- Bild: 28 | SpoBi: 30 | Ads: 24 | This variable is used in the headline3 text style font size parameter for small device sizes. -->
|
|
40
|
+
<integer name="global_typography_font_size_headline_headline3_font_size_md">36</integer><!-- Bild: 36 | SpoBi: 30 | Ads: 26 | This variable is used in the headline3 text style font size parameter for medium device sizes. -->
|
|
41
|
+
<integer name="global_typography_font_size_headline_headline3_font_size_lg">40</integer><!-- Bild: 40 | SpoBi: 34 | Ads: 32 | This variable is used in the headline3 text style font size parameter for large device sizes. -->
|
|
42
|
+
<integer name="global_typography_font_size_headline_headline4_font_size_xs">22</integer><!-- Bild: 22 | SpoBi: 21 | Ads: 16 | This variable is used in the headline4 text style font size parameter for small device sizes. -->
|
|
43
|
+
<integer name="global_typography_font_size_headline_headline4_font_size_sm">22</integer><!-- Bild: 22 | SpoBi: 21 | Ads: 16 | This variable is used in the headline4 text style font size parameter for small device sizes. -->
|
|
44
|
+
<integer name="global_typography_font_size_headline_headline4_font_size_md">26</integer><!-- Bild: 26 | SpoBi: 26 | Ads: 20 | This variable is used in the headline4 text style font size parameter for medium device sizes. -->
|
|
45
|
+
<integer name="global_typography_font_size_headline_headline4_font_size_lg">32</integer><!-- Bild: 32 | SpoBi: 26 | Ads: 22 | This variable is used in the headline4 text style font size parameter for large device sizes. -->
|
|
46
|
+
<integer name="global_typography_font_size_subheadline_subheadline1_font_size_xs">24</integer><!-- Bild: 24 | SpoBi: 18 | Ads: 18 | This variable is used in the subheadline1 text style font size parameter for small device sizes. -->
|
|
47
|
+
<integer name="global_typography_font_size_subheadline_subheadline1_font_size_sm">24</integer><!-- Bild: 24 | SpoBi: 18 | Ads: 18 | This variable is used in the subheadline1 text style font size parameter for small device sizes. -->
|
|
48
|
+
<integer name="global_typography_font_size_subheadline_subheadline1_font_size_md">32</integer><!-- Bild: 32 | SpoBi: 22 | Ads: 18 | This variable is used in the subheadline1 text style font size parameter for medium device sizes. -->
|
|
49
|
+
<integer name="global_typography_font_size_subheadline_subheadline1_font_size_lg">36</integer><!-- Bild: 36 | SpoBi: 26 | Ads: 28 | This variable is used in the subheadline1 text style font size parameter for large device sizes. -->
|
|
50
|
+
<integer name="global_typography_font_size_kicker_kicker1_font_size_xs">18</integer><!-- Bild: 18 | SpoBi: 20 | Ads: 16 | This variable is used in the kicker1 text style font size parameter for small device sizes. Current online css: --kicker-0-font-size-sm -->
|
|
51
|
+
<integer name="global_typography_font_size_kicker_kicker1_font_size_sm">18</integer><!-- Bild: 18 | SpoBi: 20 | Ads: 16 | This variable is used in the kicker1 text style font size parameter for small device sizes. Current online css: --kicker-0-font-size-sm -->
|
|
52
|
+
<integer name="global_typography_font_size_kicker_kicker1_font_size_md">22</integer><!-- Bild: 22 | SpoBi: 26 | Ads: 18 | This variable is used in the kicker1 text style font size parameter for medium device sizes. Current online css: --kicker-0-font-size-md -->
|
|
53
|
+
<integer name="global_typography_font_size_kicker_kicker1_font_size_lg">30</integer><!-- Bild: 30 | SpoBi: 32 | Ads: 25 | This variable is used in the kicker1 text style font size parameter for large device sizes. Current online css: --kicker-0-font-size-lg -->
|
|
54
|
+
<integer name="global_typography_font_size_kicker_kicker2_font_size_xs">18</integer><!-- Bild: 18 | SpoBi: 16 | Ads: 16 | This variable is used in the kicker2 text style font size parameter for small device sizes. Current online css: --kicker-1-font-size-sm -->
|
|
55
|
+
<integer name="global_typography_font_size_kicker_kicker2_font_size_sm">18</integer><!-- Bild: 18 | SpoBi: 16 | Ads: 16 | This variable is used in the kicker2 text style font size parameter for small device sizes. Current online css: --kicker-1-font-size-sm -->
|
|
56
|
+
<integer name="global_typography_font_size_kicker_kicker2_font_size_md">22</integer><!-- Bild: 22 | SpoBi: 26 | Ads: 18 | This variable is used in the kicker2 text style font size parameter for medium device sizes. Current online css: --kicker-1-font-size-md -->
|
|
57
|
+
<integer name="global_typography_font_size_kicker_kicker2_font_size_lg">24</integer><!-- Bild: 24 | SpoBi: 26 | Ads: 21 | This variable is used in the kicker2 text style font size parameter for large device sizes. Current online css: --kicker-1-font-size-lg -->
|
|
58
|
+
<integer name="global_typography_font_size_kicker_kicker3_font_size_xs">16</integer><!-- Bild: 16 | SpoBi: 16 | Ads: 14 | This variable is used in the kicker3 text style font size parameter for small device sizes. Current online css: --kicker-2-font-size-sm -->
|
|
59
|
+
<integer name="global_typography_font_size_kicker_kicker3_font_size_sm">16</integer><!-- Bild: 16 | SpoBi: 16 | Ads: 14 | This variable is used in the kicker3 text style font size parameter for small device sizes. Current online css: --kicker-2-font-size-sm -->
|
|
60
|
+
<integer name="global_typography_font_size_kicker_kicker3_font_size_md">18</integer><!-- Bild: 18 | SpoBi: 20 | Ads: 14 | This variable is used in the kicker3 text style font size parameter for medium device sizes. Current online css: --kicker-2-font-size-md -->
|
|
61
|
+
<integer name="global_typography_font_size_kicker_kicker3_font_size_lg">20</integer><!-- Bild: 20 | SpoBi: 22 | Ads: 16 | This variable is used in the kicker3 text style font size parameter for large device sizes. Current online css: --kicker-2-font-size-lg -->
|
|
62
|
+
<integer name="global_typography_font_size_kicker_kicker4_font_size_xs">14</integer><!-- Bild: 14 | SpoBi: 14 | Ads: 12 | This variable is used in the kicker4 text style font size parameter for small device sizes. Current online css: --kicker-3-font-size-sm -->
|
|
63
|
+
<integer name="global_typography_font_size_kicker_kicker4_font_size_sm">14</integer><!-- Bild: 14 | SpoBi: 14 | Ads: 12 | This variable is used in the kicker4 text style font size parameter for small device sizes. Current online css: --kicker-3-font-size-sm -->
|
|
64
|
+
<integer name="global_typography_font_size_kicker_kicker4_font_size_md">16</integer><!-- Bild: 16 | SpoBi: 16 | Ads: 14 | This variable is used in the kicker4 text style font size parameter for medium device sizes. Current online css: --kicker-3-font-size-md -->
|
|
65
|
+
<integer name="global_typography_font_size_kicker_kicker4_font_size_lg">16</integer><!-- Bild: 16 | SpoBi: 18 | Ads: 14 | This variable is used in the kicker4 text style font size parameter for large device sizes. Current online css: --kicker-3-font-size-lg -->
|
|
66
|
+
<integer name="global_typography_font_size_title_title1_font_size_xs">22</integer><!-- Bild 22 | SpoBi 24 | Ads 22 | current online css: --ressort-header-font-size-sm -->
|
|
67
|
+
<integer name="global_typography_font_size_title_title1_font_size_sm">22</integer><!-- Bild 22 | SpoBi 24 | Ads 22 | current online css: --ressort-header-font-size-sm -->
|
|
68
|
+
<integer name="global_typography_font_size_title_title1_font_size_md">22</integer><!-- Bild 22 | SpoBi 28 | Ads 22 | current online css: --ressort-header-font-size-md -->
|
|
69
|
+
<integer name="global_typography_font_size_title_title1_font_size_lg">28</integer><!-- Bild 28 | SpoBi 30 | Ads 28 | current online css: --ressort-header-font-size-lg -->
|
|
70
|
+
<integer name="global_typography_font_size_title_title2_font_size_xs">16</integer><!-- Bild 16 | SpoBi 16 | Ads 14 | current online css var: --caption-1-font-size-sm -->
|
|
71
|
+
<integer name="global_typography_font_size_title_title2_font_size_sm">16</integer><!-- Bild 16 | SpoBi 16 | Ads 14 | current online css: --caption-1-font-size-sm -->
|
|
72
|
+
<integer name="global_typography_font_size_title_title2_font_size_md">18</integer><!-- Bild 18 | SpoBi 18 | Ads 16 | current online css: --caption-1-font-size-md -->
|
|
73
|
+
<integer name="global_typography_font_size_title_title2_font_size_lg">20</integer><!-- Bild 20 | SpoBi 20 | Ads 18 | current online css: --caption-1-font-size-lg -->
|
|
74
|
+
<integer name="global_typography_font_size_callout_callout1_font_size_xs">18</integer><!-- Bild: 18 | SpoBi: 18 | Ads: 16 | This variable is used in the callout1 text style font size parameter for small device sizes. Current online css: -->
|
|
75
|
+
<integer name="global_typography_font_size_callout_callout1_font_size_sm">18</integer><!-- Bild: 18 | SpoBi: 18 | Ads: 16 | This variable is used in the callout1 text style font size parameter for small device sizes. Current online css: -->
|
|
76
|
+
<integer name="global_typography_font_size_callout_callout1_font_size_md">22</integer><!-- Bild: 22 | SpoBi: 24 | Ads: 22 | This variable is used in the callout1 text style font size parameter for medium device sizes. Current online css: -->
|
|
77
|
+
<integer name="global_typography_font_size_callout_callout1_font_size_lg">22</integer><!-- Bild: 22 | SpoBi: 24 | Ads: 22 | This variable is used in the callout1 text style font size parameter for large device sizes. Current online css: -->
|
|
78
|
+
<integer name="global_typography_font_size_body_body_font_size_xs">21</integer><!-- Bild: 21 | SpoBi: 17 | Ads: 17 | This variable is used in the body text style font size parameter for small device sizes. Current online css: --body-font-size -->
|
|
79
|
+
<integer name="global_typography_font_size_body_body_font_size_sm">21</integer><!-- Bild: 21 | SpoBi: 17 | Ads: 17 | This variable is used in the body text style font size parameter for small device sizes. Current online css: --body-font-size -->
|
|
80
|
+
<integer name="global_typography_font_size_body_body_font_size_md">21</integer><!-- Bild: 21 | SpoBi: 17 | Ads: 17 | This variable is used in the body text style font size parameter for medium device sizes. Current online css: --body-font-size -->
|
|
81
|
+
<integer name="global_typography_font_size_body_body_font_size_lg">21</integer><!-- Bild: 21 | SpoBi: 17 | Ads: 17 | This variable is used in the body text style font size parameter for large device sizes. Current online css: --body-font-size -->
|
|
82
|
+
<integer name="global_typography_font_size_footnote_footnote1_font_size_xs">16</integer><!-- --footnote-font-size-sm -->
|
|
83
|
+
<integer name="global_typography_font_size_footnote_footnote1_font_size_sm">16</integer><!-- --footnote-font-size-sm -->
|
|
84
|
+
<integer name="global_typography_font_size_footnote_footnote1_font_size_md">16</integer>
|
|
85
|
+
<integer name="global_typography_font_size_footnote_footnote1_font_size_lg">18</integer><!-- --footnote-font-size-lg -->
|
|
86
|
+
<integer name="global_typography_font_size_footnote_footnote2_font_size_xs">12</integer>
|
|
87
|
+
<integer name="global_typography_font_size_footnote_footnote2_font_size_sm">12</integer>
|
|
88
|
+
<integer name="global_typography_font_size_footnote_footnote2_font_size_md">12</integer>
|
|
89
|
+
<integer name="global_typography_font_size_footnote_footnote2_font_size_lg">16</integer>
|
|
90
|
+
<integer name="global_typography_font_size_label_label1_font_size">17</integer>
|
|
91
|
+
<integer name="global_typography_font_size_label_label1_resp_font_size_xs">10</integer>
|
|
92
|
+
<integer name="global_typography_font_size_label_label1_resp_font_size_sm">10</integer>
|
|
93
|
+
<integer name="global_typography_font_size_label_label1_resp_font_size_md">15</integer>
|
|
94
|
+
<integer name="global_typography_font_size_label_label1_resp_font_size_lg">17</integer>
|
|
95
|
+
<integer name="global_typography_font_size_label_label2_font_size">15</integer>
|
|
96
|
+
<integer name="global_typography_font_size_label_label3_font_size">12</integer>
|
|
97
|
+
<integer name="global_typography_font_size_label_label4_font_size">8</integer>
|
|
98
|
+
<integer name="global_typography_font_size_quote_quote_font_size_xs">16</integer>
|
|
99
|
+
<integer name="global_typography_font_size_quote_quote_font_size_sm">16</integer>
|
|
100
|
+
<integer name="global_typography_font_size_quote_quote_font_size_md">18</integer>
|
|
101
|
+
<integer name="global_typography_font_size_quote_quote_font_size_lg">20</integer>
|
|
102
|
+
<integer name="global_typography_line_height_display_display1_line_height_xs">40</integer>
|
|
103
|
+
<integer name="global_typography_line_height_display_display1_line_height_sm">40</integer>
|
|
104
|
+
<integer name="global_typography_line_height_display_display1_line_height_md">72</integer>
|
|
105
|
+
<integer name="global_typography_line_height_display_display1_line_height_lg">120</integer>
|
|
106
|
+
<integer name="global_typography_line_height_display_display2_line_height_xs">36</integer>
|
|
107
|
+
<integer name="global_typography_line_height_display_display2_line_height_sm">36</integer>
|
|
108
|
+
<integer name="global_typography_line_height_display_display2_line_height_md">42</integer>
|
|
109
|
+
<integer name="global_typography_line_height_display_display2_line_height_lg">64</integer>
|
|
110
|
+
<integer name="global_typography_line_height_display_display3_line_height_xs">28</integer>
|
|
111
|
+
<integer name="global_typography_line_height_display_display3_line_height_sm">28</integer>
|
|
112
|
+
<integer name="global_typography_line_height_display_display3_line_height_md">32</integer>
|
|
113
|
+
<integer name="global_typography_line_height_display_display3_line_height_lg">40</integer>
|
|
114
|
+
<integer name="global_typography_line_height_headline_headline1_line_height_xs">48</integer>
|
|
115
|
+
<integer name="global_typography_line_height_headline_headline1_line_height_sm">48</integer>
|
|
116
|
+
<integer name="global_typography_line_height_headline_headline1_line_height_md">72</integer>
|
|
117
|
+
<integer name="global_typography_line_height_headline_headline1_line_height_lg">100</integer>
|
|
118
|
+
<integer name="global_typography_line_height_headline_headline2_line_height_xs">40</integer>
|
|
119
|
+
<integer name="global_typography_line_height_headline_headline2_line_height_sm">40</integer>
|
|
120
|
+
<integer name="global_typography_line_height_headline_headline2_line_height_md">48</integer>
|
|
121
|
+
<integer name="global_typography_line_height_headline_headline2_line_height_lg">64</integer>
|
|
122
|
+
<integer name="global_typography_line_height_headline_headline3_line_height_xs">28</integer>
|
|
123
|
+
<integer name="global_typography_line_height_headline_headline3_line_height_sm">28</integer>
|
|
124
|
+
<integer name="global_typography_line_height_headline_headline3_line_height_md">36</integer>
|
|
125
|
+
<integer name="global_typography_line_height_headline_headline3_line_height_lg">40</integer>
|
|
126
|
+
<integer name="global_typography_line_height_headline_headline4_line_height_xs">22</integer>
|
|
127
|
+
<integer name="global_typography_line_height_headline_headline4_line_height_sm">22</integer>
|
|
128
|
+
<integer name="global_typography_line_height_headline_headline4_line_height_md">22</integer>
|
|
129
|
+
<integer name="global_typography_line_height_headline_headline4_line_height_lg">30</integer>
|
|
130
|
+
<integer name="global_typography_line_height_subheadline_subheadline1_line_height_xs">24</integer>
|
|
131
|
+
<integer name="global_typography_line_height_subheadline_subheadline1_line_height_sm">24</integer>
|
|
132
|
+
<integer name="global_typography_line_height_subheadline_subheadline1_line_height_md">32</integer>
|
|
133
|
+
<integer name="global_typography_line_height_subheadline_subheadline1_line_height_lg">36</integer>
|
|
134
|
+
<integer name="global_typography_line_height_kicker_kicker1_line_height_xs">19.8</integer>
|
|
135
|
+
<integer name="global_typography_line_height_kicker_kicker1_line_height_sm">19.8</integer>
|
|
136
|
+
<integer name="global_typography_line_height_kicker_kicker1_line_height_md">22</integer>
|
|
137
|
+
<integer name="global_typography_line_height_kicker_kicker1_line_height_lg">30</integer>
|
|
138
|
+
<integer name="global_typography_line_height_kicker_kicker2_line_height_xs">19.8</integer>
|
|
139
|
+
<integer name="global_typography_line_height_kicker_kicker2_line_height_sm">19.8</integer>
|
|
140
|
+
<integer name="global_typography_line_height_kicker_kicker2_line_height_md">22</integer>
|
|
141
|
+
<integer name="global_typography_line_height_kicker_kicker2_line_height_lg">24</integer>
|
|
142
|
+
<integer name="global_typography_line_height_kicker_kicker3_line_height_xs">17.6</integer>
|
|
143
|
+
<integer name="global_typography_line_height_kicker_kicker3_line_height_sm">17.6</integer>
|
|
144
|
+
<integer name="global_typography_line_height_kicker_kicker3_line_height_md">18</integer>
|
|
145
|
+
<integer name="global_typography_line_height_kicker_kicker3_line_height_lg">20</integer>
|
|
146
|
+
<integer name="global_typography_line_height_kicker_kicker4_line_height_xs">15.4</integer>
|
|
147
|
+
<integer name="global_typography_line_height_kicker_kicker4_line_height_sm">15.4</integer>
|
|
148
|
+
<integer name="global_typography_line_height_kicker_kicker4_line_height_md">17.6</integer>
|
|
149
|
+
<integer name="global_typography_line_height_kicker_kicker4_line_height_lg">16</integer>
|
|
150
|
+
<integer name="global_typography_line_height_title_title1_line_height_xs">22</integer>
|
|
151
|
+
<integer name="global_typography_line_height_title_title1_line_height_sm">22</integer>
|
|
152
|
+
<integer name="global_typography_line_height_title_title1_line_height_md">22</integer>
|
|
153
|
+
<integer name="global_typography_line_height_title_title1_line_height_lg">28</integer>
|
|
154
|
+
<integer name="global_typography_line_height_title_title2_line_height_xs">17.6</integer>
|
|
155
|
+
<integer name="global_typography_line_height_title_title2_line_height_sm">17.6</integer>
|
|
156
|
+
<integer name="global_typography_line_height_title_title2_line_height_md">19.8</integer>
|
|
157
|
+
<integer name="global_typography_line_height_title_title2_line_height_lg">22</integer>
|
|
158
|
+
<integer name="global_typography_line_height_callout_callout1_line_height_xs">18</integer>
|
|
159
|
+
<integer name="global_typography_line_height_callout_callout1_line_height_sm">18</integer>
|
|
160
|
+
<integer name="global_typography_line_height_callout_callout1_line_height_md">22</integer>
|
|
161
|
+
<integer name="global_typography_line_height_callout_callout1_line_height_lg">22</integer>
|
|
162
|
+
<integer name="global_typography_line_height_body_body_line_height_xs">28</integer>
|
|
163
|
+
<integer name="global_typography_line_height_body_body_line_height_sm">28</integer>
|
|
164
|
+
<integer name="global_typography_line_height_body_body_line_height_md">28</integer>
|
|
165
|
+
<integer name="global_typography_line_height_body_body_line_height_lg">32</integer>
|
|
166
|
+
<integer name="global_typography_line_height_footnote_footnote1_line_height_xs">21</integer>
|
|
167
|
+
<integer name="global_typography_line_height_footnote_footnote1_line_height_sm">21</integer>
|
|
168
|
+
<integer name="global_typography_line_height_footnote_footnote1_line_height_md">21</integer>
|
|
169
|
+
<integer name="global_typography_line_height_footnote_footnote1_line_height_lg">23</integer>
|
|
170
|
+
<integer name="global_typography_line_height_footnote_footnote2_line_height_xs">15.6</integer>
|
|
171
|
+
<integer name="global_typography_line_height_footnote_footnote2_line_height_sm">15.6</integer>
|
|
172
|
+
<integer name="global_typography_line_height_footnote_footnote2_line_height_md">15.8</integer>
|
|
173
|
+
<integer name="global_typography_line_height_footnote_footnote2_line_height_lg">21</integer>
|
|
174
|
+
<integer name="global_typography_line_height_label_label1_line_height">17</integer><!-- Bild 17 | SpoBi 20.4 | Ads 20.4 | The label 1 text style uses this variable for its line height parameter. -->
|
|
175
|
+
<integer name="global_typography_line_height_label_label1_resp_line_height_xs">10</integer><!-- Bild 10 | SpoBi 12 | Ads 10 | The label1 responsive text style uses this variable for its line height parameter. -->
|
|
176
|
+
<integer name="global_typography_line_height_label_label1_resp_line_height_sm">10</integer><!-- Bild 10 | SpoBi 12 | Ads 10 | The label1 responsive text style uses this variable for its line height parameter. -->
|
|
177
|
+
<integer name="global_typography_line_height_label_label1_resp_line_height_md">15</integer><!-- Bild 15 | SpoBi 18 | Ads 15 | The label1 responsive text style uses this variable for its line height parameter. -->
|
|
178
|
+
<integer name="global_typography_line_height_label_label1_resp_line_height_lg">17</integer><!-- Bild 17 | SpoBi 20.4 | Ads 17 | The label1 responsive text style uses this variable for its line height parameter. -->
|
|
179
|
+
<integer name="global_typography_line_height_label_label2_line_height">16</integer><!-- Bild 16 | SpoBi 19.2 | Ads 16 | The label 2 text style uses this variable for its line height parameter. -->
|
|
180
|
+
<integer name="global_typography_line_height_label_label3_line_height">14.4</integer><!-- Bild 14.4 | SpoBi 14.4 | Ads 14.4 | The label 3 text style uses this variable for its line height parameter. -->
|
|
181
|
+
<integer name="global_typography_line_height_label_label4_line_height">10</integer><!-- Bild 10 | SpoBi 10 | Ads 10 | The label 4 text style uses this variable for its line height parameter. -->
|
|
182
|
+
<integer name="global_typography_line_height_quote_quote_line_height_xs">16</integer>
|
|
183
|
+
<integer name="global_typography_line_height_quote_quote_line_height_sm">16</integer>
|
|
184
|
+
<integer name="global_typography_line_height_quote_quote_line_height_md">18</integer>
|
|
185
|
+
<integer name="global_typography_line_height_quote_quote_line_height_lg">22</integer>
|
|
186
|
+
<integer name="global_typography_font_weight_display_display_font_weight">800</integer>
|
|
187
|
+
<integer name="global_typography_font_weight_headline_headline1_font_weight">700</integer>
|
|
188
|
+
<string name="global_typography_font_weight_headline_headline1_font_weight_st">700</string>
|
|
189
|
+
<integer name="global_typography_font_weight_headline_headline2_font_weight">700</integer>
|
|
190
|
+
<string name="global_typography_font_weight_headline_headline2_font_weight_st">700</string>
|
|
191
|
+
<integer name="global_typography_font_weight_headline_headline3_font_weight">700</integer>
|
|
192
|
+
<string name="global_typography_font_weight_headline_headline3_font_weight_st">700</string>
|
|
193
|
+
<integer name="global_typography_font_weight_headline_headline4_font_weight">600</integer>
|
|
194
|
+
<string name="global_typography_font_weight_headline_headline4_font_weight_st">600</string>
|
|
195
|
+
<integer name="global_typography_font_weight_subheadline_subheadline_font_weight">700</integer>
|
|
196
|
+
<integer name="global_typography_font_weight_kicker_kicker_font_weight">700</integer>
|
|
197
|
+
<string name="global_typography_font_weight_kicker_kicker_font_weight_st">700</string>
|
|
198
|
+
<integer name="global_typography_font_weight_title_title_font_weight">800</integer>
|
|
199
|
+
<integer name="global_typography_font_weight_callout_callout_font_weight">800</integer>
|
|
200
|
+
<integer name="global_typography_font_weight_body_body_font_weight_book">400</integer>
|
|
201
|
+
<integer name="global_typography_font_weight_body_body_font_weight_bold">700</integer>
|
|
202
|
+
<integer name="global_typography_font_weight_footnote_footnote_font_weight_book">400</integer>
|
|
203
|
+
<integer name="global_typography_font_weight_footnote_footnote_font_weight_bold">700</integer>
|
|
204
|
+
<integer name="global_typography_font_weight_label_label_font_weight_book">400</integer>
|
|
205
|
+
<integer name="global_typography_font_weight_label_label_font_weight_bold">700</integer>
|
|
206
|
+
<integer name="global_typography_font_weight_quote_quote_font_weight">800</integer>
|
|
207
|
+
<string name="global_visibilty_hide_on_bild">false</string>
|
|
208
|
+
<string name="global_visibilty_hide_on_sport_bild">true</string>
|
|
209
|
+
<string name="global_visibilty_hide_on_advertorial">true</string>
|
|
210
|
+
<string name="global_visibilty_only_bild">true</string>
|
|
211
|
+
<string name="global_visibilty_only_sport_bild">false</string>
|
|
212
|
+
<string name="global_visibilty_only_advertorial">false</string>
|
|
213
|
+
<string name="component_button_label_font_weight_st">600</string>
|
|
214
|
+
<string name="component_accordion_accordion_label_font_family">Gotham XNarrow</string>
|
|
215
|
+
<integer name="component_article_font_size_article_image_caption_font_size_xs">16</integer><!-- --article-figure-caption-font-size-sm -->
|
|
216
|
+
<integer name="component_article_font_size_article_image_caption_font_size_sm">16</integer><!-- --article-figure-caption-font-size-sm -->
|
|
217
|
+
<integer name="component_article_font_size_article_image_caption_font_size_md">18</integer><!-- --article-figure-caption-font-size-md -->
|
|
218
|
+
<integer name="component_article_font_size_article_image_caption_font_size_lg">18</integer><!-- --article-figure-caption-font-size-lg -->
|
|
219
|
+
<integer name="component_article_font_size_article_image_source_font_size_xs">16</integer><!-- --article-figure-meta-font-size-sm -->
|
|
220
|
+
<integer name="component_article_font_size_article_image_source_font_size_sm">16</integer><!-- --article-figure-meta-font-size-sm -->
|
|
221
|
+
<integer name="component_article_font_size_article_image_source_font_size_md">16</integer><!-- --article-figure-meta-font-size-sm -->
|
|
222
|
+
<integer name="component_article_font_size_article_image_source_font_size_lg">18</integer><!-- --article-figure-meta-font-size-lg -->
|
|
223
|
+
<integer name="component_article_line_height_article_image_caption_line_height_xs">19.5</integer><!-- --article-figure-caption-line-height-sm ; Bild: 19.5 // SpoBi: 16.9 // Ad: 19.5 -->
|
|
224
|
+
<integer name="component_article_line_height_article_image_caption_line_height_sm">19.5</integer><!-- --article-figure-caption-line-height-sm ; Bild: 19.5 // SpoBi: 16.9 // Ad: 19.5 -->
|
|
225
|
+
<integer name="component_article_line_height_article_image_caption_line_height_md">24.75</integer><!-- --article-figure-caption-line-height-md ; Bild: 24.75 // SpoBi: 16.9 // Ad: 19.5 -->
|
|
226
|
+
<integer name="component_article_line_height_article_image_caption_line_height_lg">24.75</integer><!-- --article-figure-caption-line-height-lg ; Bild: 24.75 // SpoBi: 19.5 // Ad: 24 -->
|
|
227
|
+
<integer name="component_article_line_height_article_image_source_line_height_xs">21</integer><!-- --article-figure-meta-line-height-sm ; Bild: 21 // SpoBi: 17 // Ad: 19 -->
|
|
228
|
+
<integer name="component_article_line_height_article_image_source_line_height_sm">21</integer><!-- --article-figure-meta-line-height-sm ; Bild: 21 // SpoBi: 17 // Ad: 19 -->
|
|
229
|
+
<integer name="component_article_line_height_article_image_source_line_height_md">21</integer><!-- --article-figure-meta-line-height-sm ; Bild: 21 // SpoBi: 17 // Ad: 19 -->
|
|
230
|
+
<integer name="component_article_line_height_article_image_source_line_height_lg">23</integer><!-- --article-figure-meta-line-height-lg ; Bild: 23 // SpoBi: 19 // Ad: 24 -->
|
|
231
|
+
<string name="component_avatar_avatar_font_family">Gotham XNarrow</string><!-- current css 09-2025 --article-author-font // Bild: GothamXNarrow; SpoBi: Inter; Ads: LucidaGrande -->
|
|
232
|
+
<integer name="component_avatar_avatar_font_size_sm">16</integer><!-- 09-2025 css using footnote var for font sizes SM & LG // Bild: 16; SpoBi: 13; Ads: 13 -->
|
|
233
|
+
<integer name="component_avatar_avatar_font_size_lg">18</integer><!-- 09-2025 css using footnote var for font sizes SM & LG // Bild: 18; SpoBi: 15; Ads: 15 -->
|
|
234
|
+
<string name="component_breadcrumb_font_family_breadcrumb_font_family">Gotham XNarrow</string><!-- --breadcrumb-font -->
|
|
235
|
+
<integer name="component_breadcrumb_font_weight_breadcrumb_font_weight">700</integer><!-- --breadcrumb-font-size-sm -->
|
|
236
|
+
<integer name="component_breadcrumb_font_size_breadcrumb_font_size_xs">15</integer><!-- --breadcrumb-font-size-sm -->
|
|
237
|
+
<integer name="component_breadcrumb_font_size_breadcrumb_font_size_sm">15</integer><!-- --breadcrumb-font-size-sm -->
|
|
238
|
+
<integer name="component_breadcrumb_font_size_breadcrumb_font_size_md">15</integer><!-- --breadcrumb-font-size-sm -->
|
|
239
|
+
<integer name="component_breadcrumb_font_size_breadcrumb_font_size_lg">12</integer><!-- --breadcrumb-font-size-lg -->
|
|
240
|
+
<integer name="component_breadcrumb_line_height_breadcrumb_line_height_xs">15</integer><!-- not defined as variable -->
|
|
241
|
+
<integer name="component_breadcrumb_line_height_breadcrumb_line_height_sm">15</integer><!-- not defined as variable -->
|
|
242
|
+
<integer name="component_breadcrumb_line_height_breadcrumb_line_height_md">15</integer><!-- not defined as variable -->
|
|
243
|
+
<integer name="component_breadcrumb_line_height_breadcrumb_line_height_lg">12</integer><!-- not defined as variable -->
|
|
244
|
+
<integer name="component_breaking_news_breaking_news_content_font_size">21</integer>
|
|
245
|
+
<string name="component_footer_footer_link_font_family">Gotham XNarrow</string>
|
|
246
|
+
<string name="component_inputfield_input_field_label_font_family">Gotham XNarrow</string>
|
|
247
|
+
<string name="component_media_player_video_time_badge_font_family">Gotham XNarrow</string>
|
|
248
|
+
<integer name="component_menu_menu_item_font_size">15</integer><!-- --nav-btn-font-size -->
|
|
249
|
+
<string name="component_menu_menu_item_font_weight">700</string>
|
|
250
|
+
<integer name="component_menu_app_top_bar_title_font_size_xs">12</integer><!-- --caption-1-font-size-sm -->
|
|
251
|
+
<integer name="component_menu_app_top_bar_title_font_size_sm">12</integer><!-- --caption-1-font-size-sm -->
|
|
252
|
+
<integer name="component_menu_app_top_bar_title_font_size_md">14</integer><!-- --caption-1-font-size-md -->
|
|
253
|
+
<integer name="component_menu_app_top_bar_title_font_size_lg">14</integer><!-- --caption-1-font-size-lg -->
|
|
254
|
+
<integer name="component_menu_app_top_bar_title_line_height_xs">14</integer>
|
|
255
|
+
<integer name="component_menu_app_top_bar_title_line_height_sm">14</integer>
|
|
256
|
+
<integer name="component_menu_app_top_bar_title_line_height_md">17</integer>
|
|
257
|
+
<integer name="component_menu_app_top_bar_title_line_height_lg">17</integer>
|
|
258
|
+
<integer name="component_teaser_teaser_title_inline_space_xs">8</integer><!-- --teaser-title-padding-xs -->
|
|
259
|
+
<integer name="component_teaser_teaser_title_inline_space_sm">8</integer><!-- --teaser-title-padding-sm -->
|
|
260
|
+
<integer name="component_teaser_teaser_title_inline_space_md">12</integer><!-- --teaser-title-padding-md -->
|
|
261
|
+
<integer name="component_teaser_teaser_title_inline_space_lg">12</integer><!-- --teaser-title-padding-lg -->
|
|
262
|
+
<integer name="component_teaser_quad_q_teaser_title_inline_space_xs">8</integer>
|
|
263
|
+
<integer name="component_teaser_quad_q_teaser_title_inline_space_sm">8</integer>
|
|
264
|
+
<integer name="component_teaser_quad_q_teaser_title_inline_space_md">16</integer>
|
|
265
|
+
<integer name="component_teaser_quad_q_teaser_title_inline_space_lg">12</integer>
|
|
266
|
+
<integer name="component_teaser_mini_q_mini_q_teaser_title_inline_space_xs">8</integer>
|
|
267
|
+
<integer name="component_teaser_mini_q_mini_q_teaser_title_inline_space_sm">8</integer>
|
|
268
|
+
<integer name="component_teaser_mini_q_mini_q_teaser_title_inline_space_md">8</integer>
|
|
269
|
+
<integer name="component_teaser_mini_q_mini_q_teaser_title_inline_space_lg">8</integer>
|
|
270
|
+
<integer name="component_teaser_a_teaser_a_teaser_title_inline_space_xs">8</integer>
|
|
271
|
+
<integer name="component_teaser_a_teaser_a_teaser_title_inline_space_sm">8</integer>
|
|
272
|
+
<integer name="component_teaser_a_teaser_a_teaser_title_inline_space_md">12</integer>
|
|
273
|
+
<integer name="component_teaser_a_teaser_a_teaser_title_inline_space_lg">12</integer>
|
|
274
|
+
<integer name="component_teaser_super_a_super_ateaser_title_inline_space">16</integer>
|
|
275
|
+
<integer name="component_teaser_2xa_teaser_2xa_teaser_title_inline_space">8</integer>
|
|
276
|
+
<integer name="component_teaser_b_teaser_b_teaser_title_inline_space">8</integer>
|
|
277
|
+
<string name="brand_name">BILD</string>
|
|
278
|
+
</resources>
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
|
|
3
|
+
<!--
|
|
4
|
+
Do not edit directly, this file was auto-generated.
|
|
5
|
+
-->
|
|
6
|
+
<resources>
|
|
7
|
+
<color name="global_core_core_color_primary">#ffde0000</color><!-- Bild: 046; SpoBi: 016 current css calls this variable main tenant color -->
|
|
8
|
+
<color name="global_core_core_color_secondary">#ffffffff</color><!-- Bild&SpoBi Tone 100 -->
|
|
9
|
+
<color name="global_core_core_color_secondary_dark">#ff242629</color><!-- Bild: 015 ; SpoBi: 010 -->
|
|
10
|
+
<color name="global_core_core_color_tertiary">#ff242629</color><!-- Bild: 015 ; SpoBi: 010 -->
|
|
11
|
+
<color name="global_core_core_color_tertiary_dark">#ffffffff</color><!-- Bild&SpoBi: 100 -->
|
|
12
|
+
<color name="global_attention_accent_color_primary">#ffde0000</color><!-- Bild: Tone 046 ; SpoBi: 016 This variable is used on small UI elements such as the background color for kickers. -->
|
|
13
|
+
<color name="global_attention_accent_color_primary_dark">#ffffffff</color><!-- Bild: 100 ; SpoBi: 098 -->
|
|
14
|
+
<color name="global_surface_surface_color_primary">#ffffffff</color><!-- Bild: 100 ; SpoBi: 100 -->
|
|
15
|
+
<color name="global_surface_surface_color_primary_dark">#ff242629</color><!-- Bild: 015 ; SpoBi: 010 -->
|
|
16
|
+
<color name="global_surface_surface_color_secondary">#fff2f5f5</color><!-- Bild: 096 ; SpoBi: 098 -->
|
|
17
|
+
<color name="global_surface_surface_color_secondary_dark">#ff2b3038</color><!-- Bild: 020 ; SpoBi: 016 -->
|
|
18
|
+
<color name="global_surface_surface_color_tertiary">#ffe8edf0</color><!-- Bild: 093 ; SpoBi: 081 -->
|
|
19
|
+
<color name="global_surface_surface_color_tertiary_dark">#ff333d40</color><!-- Bild: 025 ; SpoBi: 029 -->
|
|
20
|
+
<color name="global_surface_surface_color_quartenary">#ffcfd4d9</color><!-- Bild: 085 ; SpoBi: 085 -->
|
|
21
|
+
<color name="global_surface_surface_color_quartenary_dark">#ff4a5259</color><!-- Bild: 035 ; SpoBi: 035 -->
|
|
22
|
+
<color name="global_state_color_primary_active">#ffde0000</color><!-- Bild: 046 ; SpoBi: 029 -->
|
|
23
|
+
<color name="global_state_color_primary_active_dark">#ffde0000</color><!-- Bild: 046 ; SpoBi: 098 -->
|
|
24
|
+
<color name="global_text_text_color_primary">#ff242629</color><!-- Bild & SpoBi: Tone 015 -->
|
|
25
|
+
<color name="global_text_text_color_primary_dark">#ffe8edf0</color><!-- Bild & SpoBi: Tone 093 -->
|
|
26
|
+
<color name="global_text_text_color_secondary">#ff8c9196</color><!-- Bild & SpoBi: Tone 060 -->
|
|
27
|
+
<color name="global_text_text_color_secondary_dark">#ff8c9196</color><!-- Bild & SpoBi: Tone 060 -->
|
|
28
|
+
<color name="global_text_headline_color_primary">#ff242629</color><!-- Bild: 015 ; SpoBi: 016 -->
|
|
29
|
+
<color name="global_text_headline_color_primary_dark">#ffffffff</color><!-- Bild&SpoBi: Tone 100 -->
|
|
30
|
+
<color name="global_text_kicker_text_color_on_bg">#ffffffff</color><!-- This variable is used on kicker texts that are on top of a color that is different from the outer color of the overall user interface. Bild & SpoBi: Tone 100 -->
|
|
31
|
+
<color name="global_text_kicker_text_color_on_surface">#ffde0000</color><!-- This variable is used for the color of kicker texts that are not no top of a different color of the overall user interface. Bild: 046 ; SpoBi: 060 -->
|
|
32
|
+
<color name="global_text_kicker_text_color_on_surface_dark">#ff8c9196</color><!-- Use this variable for kicker texts that are directly on top of the color of the overall user interface. Bild & SpoBi tone 060. -->
|
|
33
|
+
<color name="global_text_kicker_bg_color_on_surface">#ffde0000</color><!-- Use this variable for the color immediately behind the bounding box of the kicker text element. Bild: 046 ; SpoBi: 029 -->
|
|
34
|
+
<color name="global_text_kicker_bg_color_on_surface_dark">#ff8c9196</color><!-- Use this variable for the dark mode color of the background immediately around the kicker text element. Bild: 060 ; SpoBi: 060 -->
|
|
35
|
+
<color name="component_avatar_avatar_label_color">#ff242629</color><!-- 09-2025 css --article-author-name-color // Bild: 015; SpoBi: 045 -->
|
|
36
|
+
<color name="component_avatar_avatar_label_color_dark">#ffffffff</color><!-- 09-2025 css --article-author-name-color // Bild: 100; SpoBi: 093 -->
|
|
37
|
+
<color name="component_avatar_avatar_label_color_hover">#ffde0000</color><!-- This variable is used for decorating the avatar text's underline color. Bild: 046; SpoBi: 029 -->
|
|
38
|
+
<color name="component_chip_color_active">#ffde0000</color>
|
|
39
|
+
<color name="component_breaking_news_breaking_news_top_title_text_color">#ff1c1c1c</color><!-- This variable is used for the color of the "breaking" word in the "breaking news" horizontally animated headlines strip. Bild: 010 ; SpoBi: 081 -->
|
|
40
|
+
<color name="component_breaking_news_breaking_news_bottom_title_text_color">#ff1c1c1c</color><!-- This variable is used for the color of the "News" word in the breaking news horizontal animated headlines strip. Bild: 010 ; SpoBi: 100 -->
|
|
41
|
+
<color name="component_breaking_news_breaking_news_title_surface_color">#fffc8226</color><!-- This variable is used for the background color of the "Breaking News" title. Bild: 067 ; SpoBi: 016 -->
|
|
42
|
+
<color name="component_breaking_news_breaking_news_surface_color">#ff242629</color><!-- This variable is used on the breaking news strip that has horizontally animated headlines. Bild: 015 ; SpoBi: 081 -->
|
|
43
|
+
<color name="component_breaking_news_breaking_news_surface_color_dark">#ffe8edf0</color><!-- This variable is for the background color of the horizontally animated strip with headlines for breaking news on dark mode. Bild: 093 ; SpoBi: 081 -->
|
|
44
|
+
<color name="component_breaking_news_breaking_news_text_content_color">#ffffffff</color><!-- This variable is used on the text for headlines in the horizontally animated breaking news strip. Bild: 100 ; SpoBi: 015 -->
|
|
45
|
+
<color name="component_breaking_news_breaking_news_text_content_color_dark">#ff242629</color><!-- This variable is used on the text for headlines in the horizontally animated breaking news strip on dark mode. Bild&SpoBi: 015 -->
|
|
46
|
+
<color name="component_button_primary_brand_button_primary_bg_color_idle">#ffde0000</color><!-- Bild: 046 ; SpoBi: 029 -->
|
|
47
|
+
<color name="component_button_primary_brand_button_primary_bg_color_hover">#ffb00003</color><!-- Bild: 035 ; SpoBi: 016 -->
|
|
48
|
+
<color name="component_button_primary_brand_button_primary_bg_color_idle_dark">#ffde0000</color><!-- This variable controls the primary button idle color for two brands in dark mode. Bild: 046 ; SpoBi: 038 -->
|
|
49
|
+
<color name="component_button_primary_brand_button_primary_bg_color_hover_dark">#ffb00003</color><!-- This variable stores colors for the hover state of primary buttons for two brands in dark mode. Bild: 035 ; SpoBi: 029 -->
|
|
50
|
+
<color name="component_button_primary_neutral_button_primary_bg_color_idle">#ff242629</color><!-- Bild & SpoBi: Tone 015 -->
|
|
51
|
+
<color name="component_button_primary_neutral_button_primary_bg_color_hover">#ff4a5259</color><!-- Bild & SpoBi: Tone 035 -->
|
|
52
|
+
<color name="component_button_primary_neutral_button_primary_bg_color_idle_dark">#ffffffff</color><!-- Bild & SpoBi: Tone 100 -->
|
|
53
|
+
<color name="component_button_primary_neutral_button_primary_bg_color_hover_dark">#ffe8edf0</color><!-- Bild: 093 ; SpoBi: 081 -->
|
|
54
|
+
<color name="component_menu_menu_link_lane_surface_color">#ffffffff</color><!-- This variable is used for making possible the default color difference between the Bild and SportBild link lanes inside the menu component. -->
|
|
55
|
+
<color name="component_menu_menu_link_lane_surface_color_dark">#ff242629</color><!-- This variable is used for making possible the default color difference between the Bild and SportBild link lanes inside the menu component on Dark mode. -->
|
|
56
|
+
<color name="component_menu_menu_link_lane_label_color">#ff4a5259</color><!-- This variable is used for making possible the default color difference between the Bild and SportBild link lane labels inside the menu component. -->
|
|
57
|
+
<color name="component_menu_menu_link_lane_label_color_active">#ff242629</color><!-- This variable is used for making possible the active color difference between the Bild and SportBild link lane labels inside the menu component. -->
|
|
58
|
+
<color name="component_menu_menu_link_lane_label_color_dark">#ff8c9196</color>
|
|
59
|
+
<color name="component_menu_menu_link_color_border_active">#ffde0000</color>
|
|
60
|
+
<color name="component_menu_menu_link_color_border_active_dark">#ffffffff</color>
|
|
61
|
+
<color name="component_menu_app_bottom_tab_bar_bg_color">#ffffffff</color>
|
|
62
|
+
<color name="component_menu_app_top_bar_bg_color_dark">#ff333d40</color>
|
|
63
|
+
<color name="component_menu_app_bottom_tab_bar_bg_dark">#ff333d40</color>
|
|
64
|
+
<color name="component_menu_app_top_bar_surface_color">#ffffffff</color>
|
|
65
|
+
<color name="component_menu_app_top_bar_icon_color">#ff4a5259</color>
|
|
66
|
+
<color name="component_menu_app_top_bar_icon_color_dark">#ff8c9196</color>
|
|
67
|
+
<color name="component_menu_app_top_bar_text_color">#ff242629</color>
|
|
68
|
+
<color name="component_menu_app_top_bar_text_color_dark">#ffe8edf0</color>
|
|
69
|
+
<color name="component_menu_app_tob_bar_tab_nav_bottom_border">#ffe8edf0</color>
|
|
70
|
+
<color name="component_menu_app_tob_bar_tab_nav_bottom_border_dark">#ff4a5259</color>
|
|
71
|
+
<color name="component_menu_app_tob_bar_tab_nav_bottom_border_active">#ffde0000</color>
|
|
72
|
+
<color name="component_menu_app_tob_bar_tab_nav_bottom_border_active_dark">#ffffffff</color>
|
|
73
|
+
<color name="component_teaser_teaser_title_background_gradient_start">#b3000000</color>
|
|
74
|
+
<color name="component_teaser_teaser_title_background_gradient_stop">#00000000</color>
|
|
75
|
+
</resources>
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
|
|
3
|
+
<!--
|
|
4
|
+
Do not edit directly, this file was auto-generated.
|
|
5
|
+
-->
|
|
6
|
+
<resources>
|
|
7
|
+
<color name="global_core_core_color_primary">#ff0a264f</color><!-- Bild: 046; SpoBi: 016 current css calls this variable main tenant color -->
|
|
8
|
+
<color name="global_core_core_color_secondary">#ffffffff</color><!-- Bild&SpoBi Tone 100 -->
|
|
9
|
+
<color name="global_core_core_color_secondary_dark">#ff081729</color><!-- Bild: 015 ; SpoBi: 010 -->
|
|
10
|
+
<color name="global_core_core_color_tertiary">#ff081729</color><!-- Bild: 015 ; SpoBi: 010 -->
|
|
11
|
+
<color name="global_core_core_color_tertiary_dark">#ffffffff</color><!-- Bild&SpoBi: 100 -->
|
|
12
|
+
<color name="global_attention_accent_color_primary">#ff174582</color><!-- Bild: Tone 046 ; SpoBi: 016 This variable is used on small UI elements such as the background color for kickers. -->
|
|
13
|
+
<color name="global_attention_accent_color_primary_dark">#fff7fafc</color><!-- Bild: 100 ; SpoBi: 098 -->
|
|
14
|
+
<color name="global_surface_surface_color_primary">#ffffffff</color><!-- Bild: 100 ; SpoBi: 100 -->
|
|
15
|
+
<color name="global_surface_surface_color_primary_dark">#ff081729</color><!-- Bild: 015 ; SpoBi: 010 -->
|
|
16
|
+
<color name="global_surface_surface_color_secondary">#fff7fafc</color><!-- Bild: 096 ; SpoBi: 098 -->
|
|
17
|
+
<color name="global_surface_surface_color_secondary_dark">#ff0a264f</color><!-- Bild: 020 ; SpoBi: 016 -->
|
|
18
|
+
<color name="global_surface_surface_color_tertiary">#ffbdc9db</color><!-- Bild: 093 ; SpoBi: 081 -->
|
|
19
|
+
<color name="global_surface_surface_color_tertiary_dark">#ff174582</color><!-- Bild: 025 ; SpoBi: 029 -->
|
|
20
|
+
<color name="global_surface_surface_color_quartenary">#ffcfd4d9</color><!-- Bild: 085 ; SpoBi: 085 -->
|
|
21
|
+
<color name="global_surface_surface_color_quartenary_dark">#ff4a5259</color><!-- Bild: 035 ; SpoBi: 035 -->
|
|
22
|
+
<color name="global_state_color_primary_active">#ff174582</color><!-- Bild: 046 ; SpoBi: 029 -->
|
|
23
|
+
<color name="global_state_color_primary_active_dark">#fff7fafc</color><!-- Bild: 046 ; SpoBi: 098 -->
|
|
24
|
+
<color name="global_text_text_color_primary">#ff242629</color><!-- Bild & SpoBi: Tone 015 -->
|
|
25
|
+
<color name="global_text_text_color_primary_dark">#ffe8edf0</color><!-- Bild & SpoBi: Tone 093 -->
|
|
26
|
+
<color name="global_text_text_color_secondary">#ff8c9196</color><!-- Bild & SpoBi: Tone 060 -->
|
|
27
|
+
<color name="global_text_text_color_secondary_dark">#ff8c9196</color><!-- Bild & SpoBi: Tone 060 -->
|
|
28
|
+
<color name="global_text_headline_color_primary">#ff0a264f</color><!-- Bild: 015 ; SpoBi: 016 -->
|
|
29
|
+
<color name="global_text_headline_color_primary_dark">#ffffffff</color><!-- Bild&SpoBi: Tone 100 -->
|
|
30
|
+
<color name="global_text_kicker_text_color_on_bg">#ffffffff</color><!-- This variable is used on kicker texts that are on top of a color that is different from the outer color of the overall user interface. Bild & SpoBi: Tone 100 -->
|
|
31
|
+
<color name="global_text_kicker_text_color_on_surface">#ff8c9196</color><!-- This variable is used for the color of kicker texts that are not no top of a different color of the overall user interface. Bild: 046 ; SpoBi: 060 -->
|
|
32
|
+
<color name="global_text_kicker_text_color_on_surface_dark">#ff8c9196</color><!-- Use this variable for kicker texts that are directly on top of the color of the overall user interface. Bild & SpoBi tone 060. -->
|
|
33
|
+
<color name="global_text_kicker_bg_color_on_surface">#ff174582</color><!-- Use this variable for the color immediately behind the bounding box of the kicker text element. Bild: 046 ; SpoBi: 029 -->
|
|
34
|
+
<color name="global_text_kicker_bg_color_on_surface_dark">#ff8c9196</color><!-- Use this variable for the dark mode color of the background immediately around the kicker text element. Bild: 060 ; SpoBi: 060 -->
|
|
35
|
+
<color name="component_avatar_avatar_label_color">#ff666b70</color><!-- 09-2025 css --article-author-name-color // Bild: 015; SpoBi: 045 -->
|
|
36
|
+
<color name="component_avatar_avatar_label_color_dark">#ffe8edf0</color><!-- 09-2025 css --article-author-name-color // Bild: 100; SpoBi: 093 -->
|
|
37
|
+
<color name="component_avatar_avatar_label_color_hover">#ff174582</color><!-- This variable is used for decorating the avatar text's underline color. Bild: 046; SpoBi: 029 -->
|
|
38
|
+
<color name="component_chip_color_active">#ff174582</color>
|
|
39
|
+
<color name="component_breaking_news_breaking_news_top_title_text_color">#ffffbf00</color><!-- This variable is used for the color of the "breaking" word in the "breaking news" horizontally animated headlines strip. Bild: 010 ; SpoBi: 081 -->
|
|
40
|
+
<color name="component_breaking_news_breaking_news_bottom_title_text_color">#ffffffff</color><!-- This variable is used for the color of the "News" word in the breaking news horizontal animated headlines strip. Bild: 010 ; SpoBi: 100 -->
|
|
41
|
+
<color name="component_breaking_news_breaking_news_title_surface_color">#ff0a264f</color><!-- This variable is used for the background color of the "Breaking News" title. Bild: 067 ; SpoBi: 016 -->
|
|
42
|
+
<color name="component_breaking_news_breaking_news_surface_color">#ffffbf00</color><!-- This variable is used on the breaking news strip that has horizontally animated headlines. Bild: 015 ; SpoBi: 081 -->
|
|
43
|
+
<color name="component_breaking_news_breaking_news_surface_color_dark">#ffffbf00</color><!-- This variable is for the background color of the horizontally animated strip with headlines for breaking news on dark mode. Bild: 093 ; SpoBi: 081 -->
|
|
44
|
+
<color name="component_breaking_news_breaking_news_text_content_color">#ff242629</color><!-- This variable is used on the text for headlines in the horizontally animated breaking news strip. Bild: 100 ; SpoBi: 015 -->
|
|
45
|
+
<color name="component_breaking_news_breaking_news_text_content_color_dark">#ff242629</color><!-- This variable is used on the text for headlines in the horizontally animated breaking news strip on dark mode. Bild&SpoBi: 015 -->
|
|
46
|
+
<color name="component_button_primary_brand_button_primary_bg_color_idle">#ff174582</color><!-- Bild: 046 ; SpoBi: 029 -->
|
|
47
|
+
<color name="component_button_primary_brand_button_primary_bg_color_hover">#ff0a264f</color><!-- Bild: 035 ; SpoBi: 016 -->
|
|
48
|
+
<color name="component_button_primary_brand_button_primary_bg_color_idle_dark">#ff305999</color><!-- This variable controls the primary button idle color for two brands in dark mode. Bild: 046 ; SpoBi: 038 -->
|
|
49
|
+
<color name="component_button_primary_brand_button_primary_bg_color_hover_dark">#ff174582</color><!-- This variable stores colors for the hover state of primary buttons for two brands in dark mode. Bild: 035 ; SpoBi: 029 -->
|
|
50
|
+
<color name="component_button_primary_neutral_button_primary_bg_color_idle">#ff242629</color><!-- Bild & SpoBi: Tone 015 -->
|
|
51
|
+
<color name="component_button_primary_neutral_button_primary_bg_color_hover">#ff4a5259</color><!-- Bild & SpoBi: Tone 035 -->
|
|
52
|
+
<color name="component_button_primary_neutral_button_primary_bg_color_idle_dark">#ffffffff</color><!-- Bild & SpoBi: Tone 100 -->
|
|
53
|
+
<color name="component_button_primary_neutral_button_primary_bg_color_hover_dark">#ffbdc9db</color><!-- Bild: 093 ; SpoBi: 081 -->
|
|
54
|
+
<color name="component_menu_menu_link_lane_surface_color">#ff0a264f</color><!-- This variable is used for making possible the default color difference between the Bild and SportBild link lanes inside the menu component. -->
|
|
55
|
+
<color name="component_menu_menu_link_lane_surface_color_dark">#ff0a264f</color><!-- This variable is used for making possible the default color difference between the Bild and SportBild link lanes inside the menu component on Dark mode. -->
|
|
56
|
+
<color name="component_menu_menu_link_lane_label_color">#ffcfd4d9</color><!-- This variable is used for making possible the default color difference between the Bild and SportBild link lane labels inside the menu component. -->
|
|
57
|
+
<color name="component_menu_menu_link_lane_label_color_active">#ffffffff</color><!-- This variable is used for making possible the active color difference between the Bild and SportBild link lane labels inside the menu component. -->
|
|
58
|
+
<color name="component_menu_menu_link_lane_label_color_dark">#ffadb5ba</color>
|
|
59
|
+
<color name="component_menu_menu_link_color_border_active">#ff0a264f</color>
|
|
60
|
+
<color name="component_menu_menu_link_color_border_active_dark">#fff7fafc</color>
|
|
61
|
+
<color name="component_menu_app_bottom_tab_bar_bg_color">#ffffffff</color>
|
|
62
|
+
<color name="component_menu_app_top_bar_bg_color_dark">#ff0a264f</color>
|
|
63
|
+
<color name="component_menu_app_bottom_tab_bar_bg_dark">#ff0a264f</color>
|
|
64
|
+
<color name="component_menu_app_top_bar_surface_color">#ff0a264f</color>
|
|
65
|
+
<color name="component_menu_app_top_bar_icon_color">#ff8c9196</color>
|
|
66
|
+
<color name="component_menu_app_top_bar_icon_color_dark">#ff8c9196</color>
|
|
67
|
+
<color name="component_menu_app_top_bar_text_color">#ffe8edf0</color>
|
|
68
|
+
<color name="component_menu_app_top_bar_text_color_dark">#ffe8edf0</color>
|
|
69
|
+
<color name="component_menu_app_tob_bar_tab_nav_bottom_border">#ff174582</color>
|
|
70
|
+
<color name="component_menu_app_tob_bar_tab_nav_bottom_border_dark">#ff174582</color>
|
|
71
|
+
<color name="component_menu_app_tob_bar_tab_nav_bottom_border_active">#ffcfd4d9</color>
|
|
72
|
+
<color name="component_menu_app_tob_bar_tab_nav_bottom_border_active_dark">#ffffffff</color>
|
|
73
|
+
<color name="component_teaser_teaser_title_background_gradient_start">#b30a264f</color>
|
|
74
|
+
<color name="component_teaser_teaser_title_background_gradient_stop">#000a264f</color>
|
|
75
|
+
</resources>
|