@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,83 @@
|
|
|
1
|
+
|
|
2
|
+
//
|
|
3
|
+
// brand_color_bild.dart
|
|
4
|
+
//
|
|
5
|
+
|
|
6
|
+
// Do not edit directly, this file was auto-generated.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
import 'dart:ui';
|
|
11
|
+
|
|
12
|
+
class {
|
|
13
|
+
._();
|
|
14
|
+
|
|
15
|
+
static const componentAvatarAvatarLabelColor = Color(0xFF242629); /** 09-2025 css --article-author-name-color // Bild: 015; SpoBi: 045 */
|
|
16
|
+
static const componentAvatarAvatarLabelColorDark = Color(0xFFFFFFFF); /** 09-2025 css --article-author-name-color // Bild: 100; SpoBi: 093 */
|
|
17
|
+
static const componentAvatarAvatarLabelColorHover = Color(0xFFDE0000); /** This variable is used for decorating the avatar text's underline color. Bild: 046; SpoBi: 029 */
|
|
18
|
+
static const componentBreakingNewsBreakingNewsBottomTitleTextColor = Color(0xFF1C1C1C); /** This variable is used for the color of the "News" word in the breaking news horizontal animated headlines strip. Bild: 010 ; SpoBi: 100 */
|
|
19
|
+
static const componentBreakingNewsBreakingNewsSurfaceColor = Color(0xFF242629); /** This variable is used on the breaking news strip that has horizontally animated headlines. Bild: 015 ; SpoBi: 081 */
|
|
20
|
+
static const componentBreakingNewsBreakingNewsSurfaceColorDark = Color(0xFFE8EDF0); /** This variable is for the background color of the horizontally animated strip with headlines for breaking news on dark mode. Bild: 093 ; SpoBi: 081 */
|
|
21
|
+
static const componentBreakingNewsBreakingNewsTextContentColor = Color(0xFFFFFFFF); /** This variable is used on the text for headlines in the horizontally animated breaking news strip. Bild: 100 ; SpoBi: 015 */
|
|
22
|
+
static const componentBreakingNewsBreakingNewsTextContentColorDark = Color(0xFF242629); /** This variable is used on the text for headlines in the horizontally animated breaking news strip on dark mode. Bild&SpoBi: 015 */
|
|
23
|
+
static const componentBreakingNewsBreakingNewsTitleSurfaceColor = Color(0xFFFC8226); /** This variable is used for the background color of the "Breaking News" title. Bild: 067 ; SpoBi: 016 */
|
|
24
|
+
static const componentBreakingNewsBreakingNewsTopTitleTextColor = Color(0xFF1C1C1C); /** This variable is used for the color of the "breaking" word in the "breaking news" horizontally animated headlines strip. Bild: 010 ; SpoBi: 081 */
|
|
25
|
+
static const componentButtonPrimaryBrandButtonPrimaryBgColorHover = Color(0xFFB00003); /** Bild: 035 ; SpoBi: 016 */
|
|
26
|
+
static const componentButtonPrimaryBrandButtonPrimaryBgColorHoverDark = Color(0xFFB00003); /** This variable stores colors for the hover state of primary buttons for two brands in dark mode. Bild: 035 ; SpoBi: 029 */
|
|
27
|
+
static const componentButtonPrimaryBrandButtonPrimaryBgColorIdle = Color(0xFFDE0000); /** Bild: 046 ; SpoBi: 029 */
|
|
28
|
+
static const componentButtonPrimaryBrandButtonPrimaryBgColorIdleDark = Color(0xFFDE0000); /** This variable controls the primary button idle color for two brands in dark mode. Bild: 046 ; SpoBi: 038 */
|
|
29
|
+
static const componentButtonPrimaryNeutralButtonPrimaryBgColorHover = Color(0xFF4A5259); /** Bild & SpoBi: Tone 035 */
|
|
30
|
+
static const componentButtonPrimaryNeutralButtonPrimaryBgColorHoverDark = Color(0xFFE8EDF0); /** Bild: 093 ; SpoBi: 081 */
|
|
31
|
+
static const componentButtonPrimaryNeutralButtonPrimaryBgColorIdle = Color(0xFF242629); /** Bild & SpoBi: Tone 015 */
|
|
32
|
+
static const componentButtonPrimaryNeutralButtonPrimaryBgColorIdleDark = Color(0xFFFFFFFF); /** Bild & SpoBi: Tone 100 */
|
|
33
|
+
static const componentChipColorActive = Color(0xFFDE0000);
|
|
34
|
+
static const componentMenuAppBottomTabBarBgColor = Color(0xFFFFFFFF);
|
|
35
|
+
static const componentMenuAppBottomTabBarBgDark = Color(0xFF333D40);
|
|
36
|
+
static const componentMenuAppTobBarTabNavBottomBorder = Color(0xFFE8EDF0);
|
|
37
|
+
static const componentMenuAppTobBarTabNavBottomBorderActive = Color(0xFFDE0000);
|
|
38
|
+
static const componentMenuAppTobBarTabNavBottomBorderActiveDark = Color(0xFFFFFFFF);
|
|
39
|
+
static const componentMenuAppTobBarTabNavBottomBorderDark = Color(0xFF4A5259);
|
|
40
|
+
static const componentMenuAppTopBarBgColorDark = Color(0xFF333D40);
|
|
41
|
+
static const componentMenuAppTopBarIconColor = Color(0xFF4A5259);
|
|
42
|
+
static const componentMenuAppTopBarIconColorDark = Color(0xFF8C9196);
|
|
43
|
+
static const componentMenuAppTopBarSurfaceColor = Color(0xFFFFFFFF);
|
|
44
|
+
static const componentMenuAppTopBarTextColor = Color(0xFF242629);
|
|
45
|
+
static const componentMenuAppTopBarTextColorDark = Color(0xFFE8EDF0);
|
|
46
|
+
static const componentMenuMenuLinkColorBorderActive = Color(0xFFDE0000);
|
|
47
|
+
static const componentMenuMenuLinkColorBorderActiveDark = Color(0xFFFFFFFF);
|
|
48
|
+
static const componentMenuMenuLinkLaneLabelColor = Color(0xFF4A5259); /** This variable is used for making possible the default color difference between the Bild and SportBild link lane labels inside the menu component. */
|
|
49
|
+
static const componentMenuMenuLinkLaneLabelColorActive = Color(0xFF242629); /** This variable is used for making possible the active color difference between the Bild and SportBild link lane labels inside the menu component. */
|
|
50
|
+
static const componentMenuMenuLinkLaneLabelColorDark = Color(0xFF8C9196);
|
|
51
|
+
static const componentMenuMenuLinkLaneSurfaceColor = Color(0xFFFFFFFF); /** This variable is used for making possible the default color difference between the Bild and SportBild link lanes inside the menu component. */
|
|
52
|
+
static const componentMenuMenuLinkLaneSurfaceColorDark = Color(0xFF242629); /** 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. */
|
|
53
|
+
static const componentTeaserTeaserTitleBackgroundGradientStart = Color(0xB3000000);
|
|
54
|
+
static const componentTeaserTeaserTitleBackgroundGradientStop = Color(0x00000000);
|
|
55
|
+
static const globalAttentionAccentColorPrimary = Color(0xFFDE0000); /** Bild: Tone 046 ; SpoBi: 016 This variable is used on small UI elements such as the background color for kickers. */
|
|
56
|
+
static const globalAttentionAccentColorPrimaryDark = Color(0xFFFFFFFF); /** Bild: 100 ; SpoBi: 098 */
|
|
57
|
+
static const globalCoreCoreColorPrimary = Color(0xFFDE0000); /** Bild: 046; SpoBi: 016 current css calls this variable main tenant color */
|
|
58
|
+
static const globalCoreCoreColorSecondary = Color(0xFFFFFFFF); /** Bild&SpoBi Tone 100 */
|
|
59
|
+
static const globalCoreCoreColorSecondaryDark = Color(0xFF242629); /** Bild: 015 ; SpoBi: 010 */
|
|
60
|
+
static const globalCoreCoreColorTertiary = Color(0xFF242629); /** Bild: 015 ; SpoBi: 010 */
|
|
61
|
+
static const globalCoreCoreColorTertiaryDark = Color(0xFFFFFFFF); /** Bild&SpoBi: 100 */
|
|
62
|
+
static const globalStateColorPrimaryActive = Color(0xFFDE0000); /** Bild: 046 ; SpoBi: 029 */
|
|
63
|
+
static const globalStateColorPrimaryActiveDark = Color(0xFFDE0000); /** Bild: 046 ; SpoBi: 098 */
|
|
64
|
+
static const globalSurfaceSurfaceColorPrimary = Color(0xFFFFFFFF); /** Bild: 100 ; SpoBi: 100 */
|
|
65
|
+
static const globalSurfaceSurfaceColorPrimaryDark = Color(0xFF242629); /** Bild: 015 ; SpoBi: 010 */
|
|
66
|
+
static const globalSurfaceSurfaceColorQuartenary = Color(0xFFCFD4D9); /** Bild: 085 ; SpoBi: 085 */
|
|
67
|
+
static const globalSurfaceSurfaceColorQuartenaryDark = Color(0xFF4A5259); /** Bild: 035 ; SpoBi: 035 */
|
|
68
|
+
static const globalSurfaceSurfaceColorSecondary = Color(0xFFF2F5F5); /** Bild: 096 ; SpoBi: 098 */
|
|
69
|
+
static const globalSurfaceSurfaceColorSecondaryDark = Color(0xFF2B3038); /** Bild: 020 ; SpoBi: 016 */
|
|
70
|
+
static const globalSurfaceSurfaceColorTertiary = Color(0xFFE8EDF0); /** Bild: 093 ; SpoBi: 081 */
|
|
71
|
+
static const globalSurfaceSurfaceColorTertiaryDark = Color(0xFF333D40); /** Bild: 025 ; SpoBi: 029 */
|
|
72
|
+
static const globalTextHeadlineColorPrimary = Color(0xFF242629); /** Bild: 015 ; SpoBi: 016 */
|
|
73
|
+
static const globalTextHeadlineColorPrimaryDark = Color(0xFFFFFFFF); /** Bild&SpoBi: Tone 100 */
|
|
74
|
+
static const globalTextKickerBgColorOnSurface = Color(0xFFDE0000); /** Use this variable for the color immediately behind the bounding box of the kicker text element. Bild: 046 ; SpoBi: 029 */
|
|
75
|
+
static const globalTextKickerBgColorOnSurfaceDark = Color(0xFF8C9196); /** Use this variable for the dark mode color of the background immediately around the kicker text element. Bild: 060 ; SpoBi: 060 */
|
|
76
|
+
static const globalTextKickerTextColorOnBg = Color(0xFFFFFFFF); /** 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 */
|
|
77
|
+
static const globalTextKickerTextColorOnSurface = Color(0xFFDE0000); /** 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 */
|
|
78
|
+
static const globalTextKickerTextColorOnSurfaceDark = Color(0xFF8C9196); /** Use this variable for kicker texts that are directly on top of the color of the overall user interface. Bild & SpoBi tone 060. */
|
|
79
|
+
static const globalTextTextColorPrimary = Color(0xFF242629); /** Bild & SpoBi: Tone 015 */
|
|
80
|
+
static const globalTextTextColorPrimaryDark = Color(0xFFE8EDF0); /** Bild & SpoBi: Tone 093 */
|
|
81
|
+
static const globalTextTextColorSecondary = Color(0xFF8C9196); /** Bild & SpoBi: Tone 060 */
|
|
82
|
+
static const globalTextTextColorSecondaryDark = Color(0xFF8C9196); /** Bild & SpoBi: Tone 060 */
|
|
83
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
|
|
2
|
+
//
|
|
3
|
+
// brand_color_sportbild.dart
|
|
4
|
+
//
|
|
5
|
+
|
|
6
|
+
// Do not edit directly, this file was auto-generated.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
import 'dart:ui';
|
|
11
|
+
|
|
12
|
+
class {
|
|
13
|
+
._();
|
|
14
|
+
|
|
15
|
+
static const componentAvatarAvatarLabelColor = Color(0xFF666B70); /** 09-2025 css --article-author-name-color // Bild: 015; SpoBi: 045 */
|
|
16
|
+
static const componentAvatarAvatarLabelColorDark = Color(0xFFE8EDF0); /** 09-2025 css --article-author-name-color // Bild: 100; SpoBi: 093 */
|
|
17
|
+
static const componentAvatarAvatarLabelColorHover = Color(0xFF174582); /** This variable is used for decorating the avatar text's underline color. Bild: 046; SpoBi: 029 */
|
|
18
|
+
static const componentBreakingNewsBreakingNewsBottomTitleTextColor = Color(0xFFFFFFFF); /** This variable is used for the color of the "News" word in the breaking news horizontal animated headlines strip. Bild: 010 ; SpoBi: 100 */
|
|
19
|
+
static const componentBreakingNewsBreakingNewsSurfaceColor = Color(0xFFFFBF00); /** This variable is used on the breaking news strip that has horizontally animated headlines. Bild: 015 ; SpoBi: 081 */
|
|
20
|
+
static const componentBreakingNewsBreakingNewsSurfaceColorDark = Color(0xFFFFBF00); /** This variable is for the background color of the horizontally animated strip with headlines for breaking news on dark mode. Bild: 093 ; SpoBi: 081 */
|
|
21
|
+
static const componentBreakingNewsBreakingNewsTextContentColor = Color(0xFF242629); /** This variable is used on the text for headlines in the horizontally animated breaking news strip. Bild: 100 ; SpoBi: 015 */
|
|
22
|
+
static const componentBreakingNewsBreakingNewsTextContentColorDark = Color(0xFF242629); /** This variable is used on the text for headlines in the horizontally animated breaking news strip on dark mode. Bild&SpoBi: 015 */
|
|
23
|
+
static const componentBreakingNewsBreakingNewsTitleSurfaceColor = Color(0xFF0A264F); /** This variable is used for the background color of the "Breaking News" title. Bild: 067 ; SpoBi: 016 */
|
|
24
|
+
static const componentBreakingNewsBreakingNewsTopTitleTextColor = Color(0xFFFFBF00); /** This variable is used for the color of the "breaking" word in the "breaking news" horizontally animated headlines strip. Bild: 010 ; SpoBi: 081 */
|
|
25
|
+
static const componentButtonPrimaryBrandButtonPrimaryBgColorHover = Color(0xFF0A264F); /** Bild: 035 ; SpoBi: 016 */
|
|
26
|
+
static const componentButtonPrimaryBrandButtonPrimaryBgColorHoverDark = Color(0xFF174582); /** This variable stores colors for the hover state of primary buttons for two brands in dark mode. Bild: 035 ; SpoBi: 029 */
|
|
27
|
+
static const componentButtonPrimaryBrandButtonPrimaryBgColorIdle = Color(0xFF174582); /** Bild: 046 ; SpoBi: 029 */
|
|
28
|
+
static const componentButtonPrimaryBrandButtonPrimaryBgColorIdleDark = Color(0xFF305999); /** This variable controls the primary button idle color for two brands in dark mode. Bild: 046 ; SpoBi: 038 */
|
|
29
|
+
static const componentButtonPrimaryNeutralButtonPrimaryBgColorHover = Color(0xFF4A5259); /** Bild & SpoBi: Tone 035 */
|
|
30
|
+
static const componentButtonPrimaryNeutralButtonPrimaryBgColorHoverDark = Color(0xFFBDC9DB); /** Bild: 093 ; SpoBi: 081 */
|
|
31
|
+
static const componentButtonPrimaryNeutralButtonPrimaryBgColorIdle = Color(0xFF242629); /** Bild & SpoBi: Tone 015 */
|
|
32
|
+
static const componentButtonPrimaryNeutralButtonPrimaryBgColorIdleDark = Color(0xFFFFFFFF); /** Bild & SpoBi: Tone 100 */
|
|
33
|
+
static const componentChipColorActive = Color(0xFF174582);
|
|
34
|
+
static const componentMenuAppBottomTabBarBgColor = Color(0xFFFFFFFF);
|
|
35
|
+
static const componentMenuAppBottomTabBarBgDark = Color(0xFF0A264F);
|
|
36
|
+
static const componentMenuAppTobBarTabNavBottomBorder = Color(0xFF174582);
|
|
37
|
+
static const componentMenuAppTobBarTabNavBottomBorderActive = Color(0xFFCFD4D9);
|
|
38
|
+
static const componentMenuAppTobBarTabNavBottomBorderActiveDark = Color(0xFFFFFFFF);
|
|
39
|
+
static const componentMenuAppTobBarTabNavBottomBorderDark = Color(0xFF174582);
|
|
40
|
+
static const componentMenuAppTopBarBgColorDark = Color(0xFF0A264F);
|
|
41
|
+
static const componentMenuAppTopBarIconColor = Color(0xFF8C9196);
|
|
42
|
+
static const componentMenuAppTopBarIconColorDark = Color(0xFF8C9196);
|
|
43
|
+
static const componentMenuAppTopBarSurfaceColor = Color(0xFF0A264F);
|
|
44
|
+
static const componentMenuAppTopBarTextColor = Color(0xFFE8EDF0);
|
|
45
|
+
static const componentMenuAppTopBarTextColorDark = Color(0xFFE8EDF0);
|
|
46
|
+
static const componentMenuMenuLinkColorBorderActive = Color(0xFF0A264F);
|
|
47
|
+
static const componentMenuMenuLinkColorBorderActiveDark = Color(0xFFF7FAFC);
|
|
48
|
+
static const componentMenuMenuLinkLaneLabelColor = Color(0xFFCFD4D9); /** This variable is used for making possible the default color difference between the Bild and SportBild link lane labels inside the menu component. */
|
|
49
|
+
static const componentMenuMenuLinkLaneLabelColorActive = Color(0xFFFFFFFF); /** This variable is used for making possible the active color difference between the Bild and SportBild link lane labels inside the menu component. */
|
|
50
|
+
static const componentMenuMenuLinkLaneLabelColorDark = Color(0xFFADB5BA);
|
|
51
|
+
static const componentMenuMenuLinkLaneSurfaceColor = Color(0xFF0A264F); /** This variable is used for making possible the default color difference between the Bild and SportBild link lanes inside the menu component. */
|
|
52
|
+
static const componentMenuMenuLinkLaneSurfaceColorDark = Color(0xFF0A264F); /** 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. */
|
|
53
|
+
static const componentTeaserTeaserTitleBackgroundGradientStart = Color(0xB30A264F);
|
|
54
|
+
static const componentTeaserTeaserTitleBackgroundGradientStop = Color(0x000A264F);
|
|
55
|
+
static const globalAttentionAccentColorPrimary = Color(0xFF174582); /** Bild: Tone 046 ; SpoBi: 016 This variable is used on small UI elements such as the background color for kickers. */
|
|
56
|
+
static const globalAttentionAccentColorPrimaryDark = Color(0xFFF7FAFC); /** Bild: 100 ; SpoBi: 098 */
|
|
57
|
+
static const globalCoreCoreColorPrimary = Color(0xFF0A264F); /** Bild: 046; SpoBi: 016 current css calls this variable main tenant color */
|
|
58
|
+
static const globalCoreCoreColorSecondary = Color(0xFFFFFFFF); /** Bild&SpoBi Tone 100 */
|
|
59
|
+
static const globalCoreCoreColorSecondaryDark = Color(0xFF081729); /** Bild: 015 ; SpoBi: 010 */
|
|
60
|
+
static const globalCoreCoreColorTertiary = Color(0xFF081729); /** Bild: 015 ; SpoBi: 010 */
|
|
61
|
+
static const globalCoreCoreColorTertiaryDark = Color(0xFFFFFFFF); /** Bild&SpoBi: 100 */
|
|
62
|
+
static const globalStateColorPrimaryActive = Color(0xFF174582); /** Bild: 046 ; SpoBi: 029 */
|
|
63
|
+
static const globalStateColorPrimaryActiveDark = Color(0xFFF7FAFC); /** Bild: 046 ; SpoBi: 098 */
|
|
64
|
+
static const globalSurfaceSurfaceColorPrimary = Color(0xFFFFFFFF); /** Bild: 100 ; SpoBi: 100 */
|
|
65
|
+
static const globalSurfaceSurfaceColorPrimaryDark = Color(0xFF081729); /** Bild: 015 ; SpoBi: 010 */
|
|
66
|
+
static const globalSurfaceSurfaceColorQuartenary = Color(0xFFCFD4D9); /** Bild: 085 ; SpoBi: 085 */
|
|
67
|
+
static const globalSurfaceSurfaceColorQuartenaryDark = Color(0xFF4A5259); /** Bild: 035 ; SpoBi: 035 */
|
|
68
|
+
static const globalSurfaceSurfaceColorSecondary = Color(0xFFF7FAFC); /** Bild: 096 ; SpoBi: 098 */
|
|
69
|
+
static const globalSurfaceSurfaceColorSecondaryDark = Color(0xFF0A264F); /** Bild: 020 ; SpoBi: 016 */
|
|
70
|
+
static const globalSurfaceSurfaceColorTertiary = Color(0xFFBDC9DB); /** Bild: 093 ; SpoBi: 081 */
|
|
71
|
+
static const globalSurfaceSurfaceColorTertiaryDark = Color(0xFF174582); /** Bild: 025 ; SpoBi: 029 */
|
|
72
|
+
static const globalTextHeadlineColorPrimary = Color(0xFF0A264F); /** Bild: 015 ; SpoBi: 016 */
|
|
73
|
+
static const globalTextHeadlineColorPrimaryDark = Color(0xFFFFFFFF); /** Bild&SpoBi: Tone 100 */
|
|
74
|
+
static const globalTextKickerBgColorOnSurface = Color(0xFF174582); /** Use this variable for the color immediately behind the bounding box of the kicker text element. Bild: 046 ; SpoBi: 029 */
|
|
75
|
+
static const globalTextKickerBgColorOnSurfaceDark = Color(0xFF8C9196); /** Use this variable for the dark mode color of the background immediately around the kicker text element. Bild: 060 ; SpoBi: 060 */
|
|
76
|
+
static const globalTextKickerTextColorOnBg = Color(0xFFFFFFFF); /** 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 */
|
|
77
|
+
static const globalTextKickerTextColorOnSurface = Color(0xFF8C9196); /** 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 */
|
|
78
|
+
static const globalTextKickerTextColorOnSurfaceDark = Color(0xFF8C9196); /** Use this variable for kicker texts that are directly on top of the color of the overall user interface. Bild & SpoBi tone 060. */
|
|
79
|
+
static const globalTextTextColorPrimary = Color(0xFF242629); /** Bild & SpoBi: Tone 015 */
|
|
80
|
+
static const globalTextTextColorPrimaryDark = Color(0xFFE8EDF0); /** Bild & SpoBi: Tone 093 */
|
|
81
|
+
static const globalTextTextColorSecondary = Color(0xFF8C9196); /** Bild & SpoBi: Tone 060 */
|
|
82
|
+
static const globalTextTextColorSecondaryDark = Color(0xFF8C9196); /** Bild & SpoBi: Tone 060 */
|
|
83
|
+
}
|
|
@@ -0,0 +1,286 @@
|
|
|
1
|
+
|
|
2
|
+
//
|
|
3
|
+
// brand_sportbild.dart
|
|
4
|
+
//
|
|
5
|
+
|
|
6
|
+
// Do not edit directly, this file was auto-generated.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
import 'dart:ui';
|
|
11
|
+
|
|
12
|
+
class {
|
|
13
|
+
._();
|
|
14
|
+
|
|
15
|
+
static const brandName = SportBILD;
|
|
16
|
+
static const componentAccordionAccordionLabelFontFamily = Inter;
|
|
17
|
+
static const componentArticleFontSizeArticleImageCaptionFontSizeLg = 15; /** --article-figure-caption-font-size-lg */
|
|
18
|
+
static const componentArticleFontSizeArticleImageCaptionFontSizeMd = 13; /** --article-figure-caption-font-size-md */
|
|
19
|
+
static const componentArticleFontSizeArticleImageCaptionFontSizeSm = 13; /** --article-figure-caption-font-size-sm */
|
|
20
|
+
static const componentArticleFontSizeArticleImageCaptionFontSizeXs = 13; /** --article-figure-caption-font-size-sm */
|
|
21
|
+
static const componentArticleFontSizeArticleImageSourceFontSizeLg = 15; /** --article-figure-meta-font-size-lg */
|
|
22
|
+
static const componentArticleFontSizeArticleImageSourceFontSizeMd = 13; /** --article-figure-meta-font-size-sm */
|
|
23
|
+
static const componentArticleFontSizeArticleImageSourceFontSizeSm = 13; /** --article-figure-meta-font-size-sm */
|
|
24
|
+
static const componentArticleFontSizeArticleImageSourceFontSizeXs = 13; /** --article-figure-meta-font-size-sm */
|
|
25
|
+
static const componentArticleLineHeightArticleImageCaptionLineHeightLg = 19.5; /** --article-figure-caption-line-height-lg ; Bild: 24.75 // SpoBi: 19.5 // Ad: 24 */
|
|
26
|
+
static const componentArticleLineHeightArticleImageCaptionLineHeightMd = 16.9; /** --article-figure-caption-line-height-md ; Bild: 24.75 // SpoBi: 16.9 // Ad: 19.5 */
|
|
27
|
+
static const componentArticleLineHeightArticleImageCaptionLineHeightSm = 16.9; /** --article-figure-caption-line-height-sm ; Bild: 19.5 // SpoBi: 16.9 // Ad: 19.5 */
|
|
28
|
+
static const componentArticleLineHeightArticleImageCaptionLineHeightXs = 16.9; /** --article-figure-caption-line-height-sm ; Bild: 19.5 // SpoBi: 16.9 // Ad: 19.5 */
|
|
29
|
+
static const componentArticleLineHeightArticleImageSourceLineHeightLg = 19; /** --article-figure-meta-line-height-lg ; Bild: 23 // SpoBi: 19 // Ad: 24 */
|
|
30
|
+
static const componentArticleLineHeightArticleImageSourceLineHeightMd = 17; /** --article-figure-meta-line-height-sm ; Bild: 21 // SpoBi: 17 // Ad: 19 */
|
|
31
|
+
static const componentArticleLineHeightArticleImageSourceLineHeightSm = 17; /** --article-figure-meta-line-height-sm ; Bild: 21 // SpoBi: 17 // Ad: 19 */
|
|
32
|
+
static const componentArticleLineHeightArticleImageSourceLineHeightXs = 17; /** --article-figure-meta-line-height-sm ; Bild: 21 // SpoBi: 17 // Ad: 19 */
|
|
33
|
+
static const componentAvatarAvatarFontFamily = Inter; /** current css 09-2025 --article-author-font // Bild: GothamXNarrow; SpoBi: Inter; Ads: LucidaGrande */
|
|
34
|
+
static const componentAvatarAvatarFontSizeLg = 15; /** 09-2025 css using footnote var for font sizes SM & LG // Bild: 18; SpoBi: 15; Ads: 15 */
|
|
35
|
+
static const componentAvatarAvatarFontSizeSm = 13; /** 09-2025 css using footnote var for font sizes SM & LG // Bild: 16; SpoBi: 13; Ads: 13 */
|
|
36
|
+
static const componentBreadcrumbFontFamilyBreadcrumbFontFamily = Inter; /** --breadcrumb-font */
|
|
37
|
+
static const componentBreadcrumbFontSizeBreadcrumbFontSizeLg = 11; /** --breadcrumb-font-size-lg */
|
|
38
|
+
static const componentBreadcrumbFontSizeBreadcrumbFontSizeMd = 14; /** --breadcrumb-font-size-sm */
|
|
39
|
+
static const componentBreadcrumbFontSizeBreadcrumbFontSizeSm = 14; /** --breadcrumb-font-size-sm */
|
|
40
|
+
static const componentBreadcrumbFontSizeBreadcrumbFontSizeXs = 14; /** --breadcrumb-font-size-sm */
|
|
41
|
+
static const componentBreadcrumbFontWeightBreadcrumbFontWeight = 400; /** --breadcrumb-font-size-sm */
|
|
42
|
+
static const componentBreadcrumbLineHeightBreadcrumbLineHeightLg = 11; /** not defined as variable */
|
|
43
|
+
static const componentBreadcrumbLineHeightBreadcrumbLineHeightMd = 14; /** not defined as variable */
|
|
44
|
+
static const componentBreadcrumbLineHeightBreadcrumbLineHeightSm = 14; /** not defined as variable */
|
|
45
|
+
static const componentBreadcrumbLineHeightBreadcrumbLineHeightXs = 14; /** not defined as variable */
|
|
46
|
+
static const componentBreakingNewsBreakingNewsContentFontSize = 26;
|
|
47
|
+
static const componentButtonLabelFontWeightSt = Bold Italic;
|
|
48
|
+
static const componentFooterFooterLinkFontFamily = Inter;
|
|
49
|
+
static const componentInputfieldInputFieldLabelFontFamily = Inter;
|
|
50
|
+
static const componentMediaPlayerVideoTimeBadgeFontFamily = Inter;
|
|
51
|
+
static const componentMenuAppTopBarTitleFontSizeLg = 13; /** --caption-1-font-size-lg */
|
|
52
|
+
static const componentMenuAppTopBarTitleFontSizeMd = 13; /** --caption-1-font-size-md */
|
|
53
|
+
static const componentMenuAppTopBarTitleFontSizeSm = 12; /** --caption-1-font-size-sm */
|
|
54
|
+
static const componentMenuAppTopBarTitleFontSizeXs = 12; /** --caption-1-font-size-sm */
|
|
55
|
+
static const componentMenuAppTopBarTitleLineHeightLg = 17;
|
|
56
|
+
static const componentMenuAppTopBarTitleLineHeightMd = 17;
|
|
57
|
+
static const componentMenuAppTopBarTitleLineHeightSm = 14;
|
|
58
|
+
static const componentMenuAppTopBarTitleLineHeightXs = 14;
|
|
59
|
+
static const componentMenuMenuItemFontSize = 18; /** --nav-btn-font-size */
|
|
60
|
+
static const componentMenuMenuItemFontWeight = Black Italic;
|
|
61
|
+
static const componentTeaser2xaTeaser2xaTeaserTitleInlineSpace = 16;
|
|
62
|
+
static const componentTeaserATeaserATeaserTitleInlineSpaceLg = 16;
|
|
63
|
+
static const componentTeaserATeaserATeaserTitleInlineSpaceMd = 16;
|
|
64
|
+
static const componentTeaserATeaserATeaserTitleInlineSpaceSm = 12;
|
|
65
|
+
static const componentTeaserATeaserATeaserTitleInlineSpaceXs = 12;
|
|
66
|
+
static const componentTeaserBTeaserBTeaserTitleInlineSpace = 16;
|
|
67
|
+
static const componentTeaserMiniQMiniQTeaserTitleInlineSpaceLg = 12;
|
|
68
|
+
static const componentTeaserMiniQMiniQTeaserTitleInlineSpaceMd = 12;
|
|
69
|
+
static const componentTeaserMiniQMiniQTeaserTitleInlineSpaceSm = 12;
|
|
70
|
+
static const componentTeaserMiniQMiniQTeaserTitleInlineSpaceXs = 12;
|
|
71
|
+
static const componentTeaserQuadQTeaserTitleInlineSpaceLg = 24;
|
|
72
|
+
static const componentTeaserQuadQTeaserTitleInlineSpaceMd = 24;
|
|
73
|
+
static const componentTeaserQuadQTeaserTitleInlineSpaceSm = 12;
|
|
74
|
+
static const componentTeaserQuadQTeaserTitleInlineSpaceXs = 12;
|
|
75
|
+
static const componentTeaserSuperASuperAteaserTitleInlineSpace = 24;
|
|
76
|
+
static const componentTeaserTeaserTitleInlineSpaceLg = 16; /** --teaser-title-padding-lg */
|
|
77
|
+
static const componentTeaserTeaserTitleInlineSpaceMd = 16; /** --teaser-title-padding-md */
|
|
78
|
+
static const componentTeaserTeaserTitleInlineSpaceSm = 12; /** --teaser-title-padding-sm */
|
|
79
|
+
static const componentTeaserTeaserTitleInlineSpaceXs = 12; /** --teaser-title-padding-xs */
|
|
80
|
+
static const globalTypographyFontFamilyBodyFontFamily = Inter; /** Bild: GothamXNarrow | SpoBi: Inter | Ads: LucidaGrande | This variable is used in the body text style font family parameter. */
|
|
81
|
+
static const globalTypographyFontFamilyCalloutFontFamily = AntennaCond; /** Bild: Gotham | SpoBi: AntennaCond | Ads: LucidaGrande | This variable is used in the callouts text style font family parameter. */
|
|
82
|
+
static const globalTypographyFontFamilyDisplayFontFamily = AntennaCond; /** Bild: Gotham | SpoBi: AntennaCond | Ads: LucidaGrande | This variable is used in the display text style font family parameter. */
|
|
83
|
+
static const globalTypographyFontFamilyFootnoteFontFamily = Inter; /** Bild: GothamXNarrow | SpoBi: Inter | Ads: LucidaGrande | This variable is used in the footnotes text style font family parameter. */
|
|
84
|
+
static const globalTypographyFontFamilyHeadlineFontFamily = AntennaExtraCond; /** Bild: GothamCond | SpoBi: AntennaExtraCond | Ads: LucidaGrande | This variable is used in the headlines text style font family parameter. */
|
|
85
|
+
static const globalTypographyFontFamilyKickerFontFamily = AntennaExtraCond; /** Bild: GothamXNarrow | SpoBi: AntennaExtraCond | Ads: LucidaGrande | This variable is used in the kickers text styles font family parameter. */
|
|
86
|
+
static const globalTypographyFontFamilyLabelFontFamily = AntennaExtraCond; /** Bild: GothamXNarrow | SpoBi: AntennaExtraCond | Ads: LucidaGrande | This variable is used in the labels text styles font family parameter. */
|
|
87
|
+
static const globalTypographyFontFamilyQuoteFontFamily = AntennaCond; /** Bild: Gotham | SpoBi: AntennaCond | Ads: LucidaGrande | This variable is used in the quotes text style font family parameter. */
|
|
88
|
+
static const globalTypographyFontFamilySubheadlineFontFamily = AntennaCond; /** Bild: GothamCond | SpoBi: AntennaCond | Ads: LucidaGrande | This variable is used in the subheadlines text style font family parameter. */
|
|
89
|
+
static const globalTypographyFontFamilyTitleFontFamily = AntennaCond; /** Bild: Gotham | SpoBi: AntennaCond | Ads: LucidaGrande | This variable is used in the titles text style font family parameter. */
|
|
90
|
+
static const globalTypographyFontSizeBodyBodyFontSizeLg = 17; /** Bild: 21 | SpoBi: 17 | Ads: 17 | This variable is used in the body text style font size parameter for large device sizes. Current online css: --body-font-size */
|
|
91
|
+
static const globalTypographyFontSizeBodyBodyFontSizeMd = 17; /** Bild: 21 | SpoBi: 17 | Ads: 17 | This variable is used in the body text style font size parameter for medium device sizes. Current online css: --body-font-size */
|
|
92
|
+
static const globalTypographyFontSizeBodyBodyFontSizeSm = 17; /** Bild: 21 | SpoBi: 17 | Ads: 17 | This variable is used in the body text style font size parameter for small device sizes. Current online css: --body-font-size */
|
|
93
|
+
static const globalTypographyFontSizeBodyBodyFontSizeXs = 17; /** Bild: 21 | SpoBi: 17 | Ads: 17 | This variable is used in the body text style font size parameter for small device sizes. Current online css: --body-font-size */
|
|
94
|
+
static const globalTypographyFontSizeCalloutCallout1FontSizeLg = 24; /** 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: */
|
|
95
|
+
static const globalTypographyFontSizeCalloutCallout1FontSizeMd = 24; /** 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: */
|
|
96
|
+
static const globalTypographyFontSizeCalloutCallout1FontSizeSm = 18; /** 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: */
|
|
97
|
+
static const globalTypographyFontSizeCalloutCallout1FontSizeXs = 18; /** 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: */
|
|
98
|
+
static const globalTypographyFontSizeDisplayDisplay1FontSizeLg = 114; /** Bild: 120 | SpoBi: 114 | Ads: 116 | This variable is used in the display1 text style font size parameter for large device sizes. */
|
|
99
|
+
static const globalTypographyFontSizeDisplayDisplay1FontSizeMd = 68; /** Bild: 72 | SpoBi: 68 | Ads: 70 | This variable is used in the display1 text style font size parameter for medium device sizes. */
|
|
100
|
+
static const globalTypographyFontSizeDisplayDisplay1FontSizeSm = 38; /** Bild: 40 | SpoBi: 38 | Ads: 39 | This variable is used in the display1 text style font size parameter for small device sizes. */
|
|
101
|
+
static const globalTypographyFontSizeDisplayDisplay1FontSizeXs = 38; /** Bild: 40 | SpoBi: 38 | Ads: 39 | This variable is used in the display1 text style font size parameter for small device sizes. */
|
|
102
|
+
static const globalTypographyFontSizeDisplayDisplay2FontSizeLg = 61; /** Bild: 64 | SpoBi: 61 | Ads: 62 | This variable is used in the display2 text style font size parameter for large device sizes. */
|
|
103
|
+
static const globalTypographyFontSizeDisplayDisplay2FontSizeMd = 40; /** Bild: 42 | SpoBi: 40 | Ads: 41 | This variable is used in the display2 text style font size parameter for medium device sizes. */
|
|
104
|
+
static const globalTypographyFontSizeDisplayDisplay2FontSizeSm = 34; /** Bild: 36 | SpoBi: 34 | Ads: 35 | This variable is used in the display2 text style font size parameter for small device sizes. */
|
|
105
|
+
static const globalTypographyFontSizeDisplayDisplay2FontSizeXs = 34; /** Bild: 36 | SpoBi: 34 | Ads: 35 | This variable is used in the display2 text style font size parameter for small device sizes. */
|
|
106
|
+
static const globalTypographyFontSizeDisplayDisplay3FontSizeLg = 38; /** Bild: 40 | SpoBi: 38 | Ads: 39 | This variable is used in the display3 text style font size parameter for large device sizes. */
|
|
107
|
+
static const globalTypographyFontSizeDisplayDisplay3FontSizeMd = 30; /** Bild: 32 | SpoBi: 30 | Ads: 31 | This variable is used in the display3 text style font size parameter for medium device sizes. */
|
|
108
|
+
static const globalTypographyFontSizeDisplayDisplay3FontSizeSm = 27; /** Bild: 28 | SpoBi: 27 | Ads: 27 | This variable is used in the display3 text style font size parameter for small device sizes. */
|
|
109
|
+
static const globalTypographyFontSizeDisplayDisplay3FontSizeXs = 27; /** Bild: 28 | SpoBi: 27 | Ads: 27 | This variable is used in the display3 text style font size parameter for small device sizes. */
|
|
110
|
+
static const globalTypographyFontSizeFootnoteFootnote1FontSizeLg = 15; /** --footnote-font-size-lg */
|
|
111
|
+
static const globalTypographyFontSizeFootnoteFootnote1FontSizeMd = 13;
|
|
112
|
+
static const globalTypographyFontSizeFootnoteFootnote1FontSizeSm = 13; /** --footnote-font-size-sm */
|
|
113
|
+
static const globalTypographyFontSizeFootnoteFootnote1FontSizeXs = 13; /** --footnote-font-size-sm */
|
|
114
|
+
static const globalTypographyFontSizeFootnoteFootnote2FontSizeLg = 13;
|
|
115
|
+
static const globalTypographyFontSizeFootnoteFootnote2FontSizeMd = 10;
|
|
116
|
+
static const globalTypographyFontSizeFootnoteFootnote2FontSizeSm = 10;
|
|
117
|
+
static const globalTypographyFontSizeFootnoteFootnote2FontSizeXs = 10;
|
|
118
|
+
static const globalTypographyFontSizeHeadlineHeadline1FontSizeLg = 80; /** Bild: 100 | SpoBi: 80 | Ads: 70 | This variable is used in the headline1 text style font size parameter for large device sizes. */
|
|
119
|
+
static const globalTypographyFontSizeHeadlineHeadline1FontSizeMd = 60; /** Bild: 72 | SpoBi: 60 | Ads: 54 | This variable is used in the headline1 text style font size parameter for medium device sizes. */
|
|
120
|
+
static const globalTypographyFontSizeHeadlineHeadline1FontSizeSm = 42; /** Bild: 48 | SpoBi: 42 | Ads: 36 | This variable is used in the headline1 text style font size parameter for small device sizes. */
|
|
121
|
+
static const globalTypographyFontSizeHeadlineHeadline1FontSizeXs = 42; /** Bild: 48 | SpoBi: 42 | Ads: 36 | This variable is used in the headline1 text style font size parameter for small device sizes. */
|
|
122
|
+
static const globalTypographyFontSizeHeadlineHeadline2FontSizeLg = 50; /** Bild: 64 | SpoBi: 50 | Ads: 48 | This variable is used in the headline2 text style font size parameter for large device sizes. */
|
|
123
|
+
static const globalTypographyFontSizeHeadlineHeadline2FontSizeMd = 44; /** Bild: 48 | SpoBi: 44 | Ads: 36 | This variable is used in the headline2 text style font size parameter for medium device sizes. */
|
|
124
|
+
static const globalTypographyFontSizeHeadlineHeadline2FontSizeSm = 42; /** Bild: 40 | SpoBi: 42 | Ads: 30 | This variable is used in the headline2 text style font size parameter for small device sizes. */
|
|
125
|
+
static const globalTypographyFontSizeHeadlineHeadline2FontSizeXs = 42; /** Bild: 40 | SpoBi: 42 | Ads: 30 | This variable is used in the headline2 text style font size parameter for small device sizes. */
|
|
126
|
+
static const globalTypographyFontSizeHeadlineHeadline3FontSizeLg = 34; /** Bild: 40 | SpoBi: 34 | Ads: 32 | This variable is used in the headline3 text style font size parameter for large device sizes. */
|
|
127
|
+
static const globalTypographyFontSizeHeadlineHeadline3FontSizeMd = 30; /** Bild: 36 | SpoBi: 30 | Ads: 26 | This variable is used in the headline3 text style font size parameter for medium device sizes. */
|
|
128
|
+
static const globalTypographyFontSizeHeadlineHeadline3FontSizeSm = 30; /** Bild: 28 | SpoBi: 30 | Ads: 24 | This variable is used in the headline3 text style font size parameter for small device sizes. */
|
|
129
|
+
static const globalTypographyFontSizeHeadlineHeadline3FontSizeXs = 30; /** Bild: 28 | SpoBi: 30 | Ads: 24 | This variable is used in the headline3 text style font size parameter for small device sizes. */
|
|
130
|
+
static const globalTypographyFontSizeHeadlineHeadline4FontSizeLg = 26; /** Bild: 32 | SpoBi: 26 | Ads: 22 | This variable is used in the headline4 text style font size parameter for large device sizes. */
|
|
131
|
+
static const globalTypographyFontSizeHeadlineHeadline4FontSizeMd = 26; /** Bild: 26 | SpoBi: 26 | Ads: 20 | This variable is used in the headline4 text style font size parameter for medium device sizes. */
|
|
132
|
+
static const globalTypographyFontSizeHeadlineHeadline4FontSizeSm = 21; /** Bild: 22 | SpoBi: 21 | Ads: 16 | This variable is used in the headline4 text style font size parameter for small device sizes. */
|
|
133
|
+
static const globalTypographyFontSizeHeadlineHeadline4FontSizeXs = 21; /** Bild: 22 | SpoBi: 21 | Ads: 16 | This variable is used in the headline4 text style font size parameter for small device sizes. */
|
|
134
|
+
static const globalTypographyFontSizeHeadlineHeadlineTextAlign = left; /** This variable is used for controlling the alignment of headlines across brands. current online css example var: --headline-text-align-lg */
|
|
135
|
+
static const globalTypographyFontSizeKickerKicker1FontSizeLg = 32; /** 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 */
|
|
136
|
+
static const globalTypographyFontSizeKickerKicker1FontSizeMd = 26; /** 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 */
|
|
137
|
+
static const globalTypographyFontSizeKickerKicker1FontSizeSm = 20; /** 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 */
|
|
138
|
+
static const globalTypographyFontSizeKickerKicker1FontSizeXs = 20; /** 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 */
|
|
139
|
+
static const globalTypographyFontSizeKickerKicker2FontSizeLg = 26; /** 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 */
|
|
140
|
+
static const globalTypographyFontSizeKickerKicker2FontSizeMd = 26; /** 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 */
|
|
141
|
+
static const globalTypographyFontSizeKickerKicker2FontSizeSm = 16; /** Bild: 18 | SpoBi: 16 | Ads: 16 | This variable is used in the kicker2 text style font size parameter for small device sizes. Current online css: --kicker-1-font-size-sm */
|
|
142
|
+
static const globalTypographyFontSizeKickerKicker2FontSizeXs = 16; /** Bild: 18 | SpoBi: 16 | Ads: 16 | This variable is used in the kicker2 text style font size parameter for small device sizes. Current online css: --kicker-1-font-size-sm */
|
|
143
|
+
static const globalTypographyFontSizeKickerKicker3FontSizeLg = 22; /** 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 */
|
|
144
|
+
static const globalTypographyFontSizeKickerKicker3FontSizeMd = 20; /** 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 */
|
|
145
|
+
static const globalTypographyFontSizeKickerKicker3FontSizeSm = 16; /** 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 */
|
|
146
|
+
static const globalTypographyFontSizeKickerKicker3FontSizeXs = 16; /** 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 */
|
|
147
|
+
static const globalTypographyFontSizeKickerKicker4FontSizeLg = 18; /** 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 */
|
|
148
|
+
static const globalTypographyFontSizeKickerKicker4FontSizeMd = 16; /** 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 */
|
|
149
|
+
static const globalTypographyFontSizeKickerKicker4FontSizeSm = 14; /** 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 */
|
|
150
|
+
static const globalTypographyFontSizeKickerKicker4FontSizeXs = 14; /** 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 */
|
|
151
|
+
static const globalTypographyFontSizeLabelLabel1FontSize = 17;
|
|
152
|
+
static const globalTypographyFontSizeLabelLabel1RespFontSizeLg = 17;
|
|
153
|
+
static const globalTypographyFontSizeLabelLabel1RespFontSizeMd = 15;
|
|
154
|
+
static const globalTypographyFontSizeLabelLabel1RespFontSizeSm = 10;
|
|
155
|
+
static const globalTypographyFontSizeLabelLabel1RespFontSizeXs = 10;
|
|
156
|
+
static const globalTypographyFontSizeLabelLabel2FontSize = 15;
|
|
157
|
+
static const globalTypographyFontSizeLabelLabel3FontSize = 12;
|
|
158
|
+
static const globalTypographyFontSizeLabelLabel4FontSize = 8;
|
|
159
|
+
static const globalTypographyFontSizeQuoteQuoteFontSizeLg = 20;
|
|
160
|
+
static const globalTypographyFontSizeQuoteQuoteFontSizeMd = 18;
|
|
161
|
+
static const globalTypographyFontSizeQuoteQuoteFontSizeSm = 16;
|
|
162
|
+
static const globalTypographyFontSizeQuoteQuoteFontSizeXs = 16;
|
|
163
|
+
static const globalTypographyFontSizeSubheadlineSubheadline1FontSizeLg = 26; /** Bild: 36 | SpoBi: 26 | Ads: 28 | This variable is used in the subheadline1 text style font size parameter for large device sizes. */
|
|
164
|
+
static const globalTypographyFontSizeSubheadlineSubheadline1FontSizeMd = 22; /** Bild: 32 | SpoBi: 22 | Ads: 18 | This variable is used in the subheadline1 text style font size parameter for medium device sizes. */
|
|
165
|
+
static const globalTypographyFontSizeSubheadlineSubheadline1FontSizeSm = 18; /** Bild: 24 | SpoBi: 18 | Ads: 18 | This variable is used in the subheadline1 text style font size parameter for small device sizes. */
|
|
166
|
+
static const globalTypographyFontSizeSubheadlineSubheadline1FontSizeXs = 18; /** Bild: 24 | SpoBi: 18 | Ads: 18 | This variable is used in the subheadline1 text style font size parameter for small device sizes. */
|
|
167
|
+
static const globalTypographyFontSizeTitleTitle1FontSizeLg = 30; /** Bild 28 | SpoBi 30 | Ads 28 | current online css: --ressort-header-font-size-lg */
|
|
168
|
+
static const globalTypographyFontSizeTitleTitle1FontSizeMd = 28; /** Bild 22 | SpoBi 28 | Ads 22 | current online css: --ressort-header-font-size-md */
|
|
169
|
+
static const globalTypographyFontSizeTitleTitle1FontSizeSm = 24; /** Bild 22 | SpoBi 24 | Ads 22 | current online css: --ressort-header-font-size-sm */
|
|
170
|
+
static const globalTypographyFontSizeTitleTitle1FontSizeXs = 24; /** Bild 22 | SpoBi 24 | Ads 22 | current online css: --ressort-header-font-size-sm */
|
|
171
|
+
static const globalTypographyFontSizeTitleTitle2FontSizeLg = 20; /** Bild 20 | SpoBi 20 | Ads 18 | current online css: --caption-1-font-size-lg */
|
|
172
|
+
static const globalTypographyFontSizeTitleTitle2FontSizeMd = 18; /** Bild 18 | SpoBi 18 | Ads 16 | current online css: --caption-1-font-size-md */
|
|
173
|
+
static const globalTypographyFontSizeTitleTitle2FontSizeSm = 16; /** Bild 16 | SpoBi 16 | Ads 14 | current online css: --caption-1-font-size-sm */
|
|
174
|
+
static const globalTypographyFontSizeTitleTitle2FontSizeXs = 16; /** Bild 16 | SpoBi 16 | Ads 14 | current online css var: --caption-1-font-size-sm */
|
|
175
|
+
static const globalTypographyFontWeightBodyBodyFontWeightBold = 700;
|
|
176
|
+
static const globalTypographyFontWeightBodyBodyFontWeightBook = 400;
|
|
177
|
+
static const globalTypographyFontWeightCalloutCalloutFontWeight = 800;
|
|
178
|
+
static const globalTypographyFontWeightDisplayDisplayFontWeight = 800;
|
|
179
|
+
static const globalTypographyFontWeightFootnoteFootnoteFontWeightBold = 700;
|
|
180
|
+
static const globalTypographyFontWeightFootnoteFootnoteFontWeightBook = 400;
|
|
181
|
+
static const globalTypographyFontWeightHeadlineHeadline1FontWeight = 700;
|
|
182
|
+
static const globalTypographyFontWeightHeadlineHeadline1FontWeightSt = Bold Italic;
|
|
183
|
+
static const globalTypographyFontWeightHeadlineHeadline2FontWeight = 700;
|
|
184
|
+
static const globalTypographyFontWeightHeadlineHeadline2FontWeightSt = Bold Italic;
|
|
185
|
+
static const globalTypographyFontWeightHeadlineHeadline3FontWeight = 700;
|
|
186
|
+
static const globalTypographyFontWeightHeadlineHeadline3FontWeightSt = Bold Italic;
|
|
187
|
+
static const globalTypographyFontWeightHeadlineHeadline4FontWeight = 700;
|
|
188
|
+
static const globalTypographyFontWeightHeadlineHeadline4FontWeightSt = Bold Italic;
|
|
189
|
+
static const globalTypographyFontWeightKickerKickerFontWeight = 700;
|
|
190
|
+
static const globalTypographyFontWeightKickerKickerFontWeightSt = Black Italic;
|
|
191
|
+
static const globalTypographyFontWeightLabelLabelFontWeightBold = 700;
|
|
192
|
+
static const globalTypographyFontWeightLabelLabelFontWeightBook = 400;
|
|
193
|
+
static const globalTypographyFontWeightQuoteQuoteFontWeight = 800;
|
|
194
|
+
static const globalTypographyFontWeightSubheadlineSubheadlineFontWeight = 700;
|
|
195
|
+
static const globalTypographyFontWeightTitleTitleFontWeight = 800;
|
|
196
|
+
static const globalTypographyLineHeightBodyBodyLineHeightLg = 28.05;
|
|
197
|
+
static const globalTypographyLineHeightBodyBodyLineHeightMd = 29.75;
|
|
198
|
+
static const globalTypographyLineHeightBodyBodyLineHeightSm = 28.05;
|
|
199
|
+
static const globalTypographyLineHeightBodyBodyLineHeightXs = 28.05;
|
|
200
|
+
static const globalTypographyLineHeightCalloutCallout1LineHeightLg = 31.2;
|
|
201
|
+
static const globalTypographyLineHeightCalloutCallout1LineHeightMd = 31.2;
|
|
202
|
+
static const globalTypographyLineHeightCalloutCallout1LineHeightSm = 23.4;
|
|
203
|
+
static const globalTypographyLineHeightCalloutCallout1LineHeightXs = 23.4;
|
|
204
|
+
static const globalTypographyLineHeightDisplayDisplay1LineHeightLg = 120;
|
|
205
|
+
static const globalTypographyLineHeightDisplayDisplay1LineHeightMd = 72;
|
|
206
|
+
static const globalTypographyLineHeightDisplayDisplay1LineHeightSm = 40;
|
|
207
|
+
static const globalTypographyLineHeightDisplayDisplay1LineHeightXs = 40;
|
|
208
|
+
static const globalTypographyLineHeightDisplayDisplay2LineHeightLg = 64;
|
|
209
|
+
static const globalTypographyLineHeightDisplayDisplay2LineHeightMd = 42;
|
|
210
|
+
static const globalTypographyLineHeightDisplayDisplay2LineHeightSm = 36;
|
|
211
|
+
static const globalTypographyLineHeightDisplayDisplay2LineHeightXs = 36;
|
|
212
|
+
static const globalTypographyLineHeightDisplayDisplay3LineHeightLg = 40;
|
|
213
|
+
static const globalTypographyLineHeightDisplayDisplay3LineHeightMd = 32;
|
|
214
|
+
static const globalTypographyLineHeightDisplayDisplay3LineHeightSm = 28;
|
|
215
|
+
static const globalTypographyLineHeightDisplayDisplay3LineHeightXs = 28;
|
|
216
|
+
static const globalTypographyLineHeightFootnoteFootnote1LineHeightLg = 19;
|
|
217
|
+
static const globalTypographyLineHeightFootnoteFootnote1LineHeightMd = 17.03;
|
|
218
|
+
static const globalTypographyLineHeightFootnoteFootnote1LineHeightSm = 17.03;
|
|
219
|
+
static const globalTypographyLineHeightFootnoteFootnote1LineHeightXs = 17.03;
|
|
220
|
+
static const globalTypographyLineHeightFootnoteFootnote2LineHeightLg = 17.03;
|
|
221
|
+
static const globalTypographyLineHeightFootnoteFootnote2LineHeightMd = 13;
|
|
222
|
+
static const globalTypographyLineHeightFootnoteFootnote2LineHeightSm = 13;
|
|
223
|
+
static const globalTypographyLineHeightFootnoteFootnote2LineHeightXs = 13;
|
|
224
|
+
static const globalTypographyLineHeightHeadlineHeadline1LineHeightLg = 88;
|
|
225
|
+
static const globalTypographyLineHeightHeadlineHeadline1LineHeightMd = 69;
|
|
226
|
+
static const globalTypographyLineHeightHeadlineHeadline1LineHeightSm = 42;
|
|
227
|
+
static const globalTypographyLineHeightHeadlineHeadline1LineHeightXs = 42;
|
|
228
|
+
static const globalTypographyLineHeightHeadlineHeadline2LineHeightLg = 57.6;
|
|
229
|
+
static const globalTypographyLineHeightHeadlineHeadline2LineHeightMd = 50.6;
|
|
230
|
+
static const globalTypographyLineHeightHeadlineHeadline2LineHeightSm = 42;
|
|
231
|
+
static const globalTypographyLineHeightHeadlineHeadline2LineHeightXs = 42;
|
|
232
|
+
static const globalTypographyLineHeightHeadlineHeadline3LineHeightLg = 39.1;
|
|
233
|
+
static const globalTypographyLineHeightHeadlineHeadline3LineHeightMd = 34.5;
|
|
234
|
+
static const globalTypographyLineHeightHeadlineHeadline3LineHeightSm = 33;
|
|
235
|
+
static const globalTypographyLineHeightHeadlineHeadline3LineHeightXs = 33;
|
|
236
|
+
static const globalTypographyLineHeightHeadlineHeadline4LineHeightLg = 29.9;
|
|
237
|
+
static const globalTypographyLineHeightHeadlineHeadline4LineHeightMd = 28.6;
|
|
238
|
+
static const globalTypographyLineHeightHeadlineHeadline4LineHeightSm = 23.1;
|
|
239
|
+
static const globalTypographyLineHeightHeadlineHeadline4LineHeightXs = 23.1;
|
|
240
|
+
static const globalTypographyLineHeightKickerKicker1LineHeightLg = 35.2;
|
|
241
|
+
static const globalTypographyLineHeightKickerKicker1LineHeightMd = 28.6;
|
|
242
|
+
static const globalTypographyLineHeightKickerKicker1LineHeightSm = 22;
|
|
243
|
+
static const globalTypographyLineHeightKickerKicker1LineHeightXs = 22;
|
|
244
|
+
static const globalTypographyLineHeightKickerKicker2LineHeightLg = 28.6;
|
|
245
|
+
static const globalTypographyLineHeightKickerKicker2LineHeightMd = 28.6;
|
|
246
|
+
static const globalTypographyLineHeightKickerKicker2LineHeightSm = 17.6;
|
|
247
|
+
static const globalTypographyLineHeightKickerKicker2LineHeightXs = 17.6;
|
|
248
|
+
static const globalTypographyLineHeightKickerKicker3LineHeightLg = 24.2;
|
|
249
|
+
static const globalTypographyLineHeightKickerKicker3LineHeightMd = 22;
|
|
250
|
+
static const globalTypographyLineHeightKickerKicker3LineHeightSm = 17.6;
|
|
251
|
+
static const globalTypographyLineHeightKickerKicker3LineHeightXs = 17.6;
|
|
252
|
+
static const globalTypographyLineHeightKickerKicker4LineHeightLg = 19.8;
|
|
253
|
+
static const globalTypographyLineHeightKickerKicker4LineHeightMd = 17.6;
|
|
254
|
+
static const globalTypographyLineHeightKickerKicker4LineHeightSm = 15.4;
|
|
255
|
+
static const globalTypographyLineHeightKickerKicker4LineHeightXs = 15.4;
|
|
256
|
+
static const globalTypographyLineHeightLabelLabel1LineHeight = 20.4; /** Bild 17 | SpoBi 20.4 | Ads 20.4 | The label 1 text style uses this variable for its line height parameter. */
|
|
257
|
+
static const globalTypographyLineHeightLabelLabel1RespLineHeightLg = 20.4; /** Bild 17 | SpoBi 20.4 | Ads 17 | The label1 responsive text style uses this variable for its line height parameter. */
|
|
258
|
+
static const globalTypographyLineHeightLabelLabel1RespLineHeightMd = 18; /** Bild 15 | SpoBi 18 | Ads 15 | The label1 responsive text style uses this variable for its line height parameter. */
|
|
259
|
+
static const globalTypographyLineHeightLabelLabel1RespLineHeightSm = 12; /** Bild 10 | SpoBi 12 | Ads 10 | The label1 responsive text style uses this variable for its line height parameter. */
|
|
260
|
+
static const globalTypographyLineHeightLabelLabel1RespLineHeightXs = 12; /** Bild 10 | SpoBi 12 | Ads 10 | The label1 responsive text style uses this variable for its line height parameter. */
|
|
261
|
+
static const globalTypographyLineHeightLabelLabel2LineHeight = 19.2; /** Bild 16 | SpoBi 19.2 | Ads 16 | The label 2 text style uses this variable for its line height parameter. */
|
|
262
|
+
static const globalTypographyLineHeightLabelLabel3LineHeight = 14.4; /** Bild 14.4 | SpoBi 14.4 | Ads 14.4 | The label 3 text style uses this variable for its line height parameter. */
|
|
263
|
+
static const globalTypographyLineHeightLabelLabel4LineHeight = 10; /** Bild 10 | SpoBi 10 | Ads 10 | The label 4 text style uses this variable for its line height parameter. */
|
|
264
|
+
static const globalTypographyLineHeightQuoteQuoteLineHeightLg = 26;
|
|
265
|
+
static const globalTypographyLineHeightQuoteQuoteLineHeightMd = 23.4;
|
|
266
|
+
static const globalTypographyLineHeightQuoteQuoteLineHeightSm = 20.8;
|
|
267
|
+
static const globalTypographyLineHeightQuoteQuoteLineHeightXs = 20.8;
|
|
268
|
+
static const globalTypographyLineHeightSubheadlineSubheadline1LineHeightLg = 33.8;
|
|
269
|
+
static const globalTypographyLineHeightSubheadlineSubheadline1LineHeightMd = 28.6;
|
|
270
|
+
static const globalTypographyLineHeightSubheadlineSubheadline1LineHeightSm = 23.4;
|
|
271
|
+
static const globalTypographyLineHeightSubheadlineSubheadline1LineHeightXs = 23.4;
|
|
272
|
+
static const globalTypographyLineHeightTitleTitle1LineHeightLg = 33;
|
|
273
|
+
static const globalTypographyLineHeightTitleTitle1LineHeightMd = 30.8;
|
|
274
|
+
static const globalTypographyLineHeightTitleTitle1LineHeightSm = 26.4;
|
|
275
|
+
static const globalTypographyLineHeightTitleTitle1LineHeightXs = 26.4;
|
|
276
|
+
static const globalTypographyLineHeightTitleTitle2LineHeightLg = 26;
|
|
277
|
+
static const globalTypographyLineHeightTitleTitle2LineHeightMd = 23.4;
|
|
278
|
+
static const globalTypographyLineHeightTitleTitle2LineHeightSm = 20.8;
|
|
279
|
+
static const globalTypographyLineHeightTitleTitle2LineHeightXs = 16.8;
|
|
280
|
+
static const globalVisibiltyHideOnAdvertorial = true;
|
|
281
|
+
static const globalVisibiltyHideOnBild = true;
|
|
282
|
+
static const globalVisibiltyHideOnSportBild = false;
|
|
283
|
+
static const globalVisibiltyOnlyAdvertorial = false;
|
|
284
|
+
static const globalVisibiltyOnlyBild = false;
|
|
285
|
+
static const globalVisibiltyOnlySportBild = true;
|
|
286
|
+
}
|