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