@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,109 @@
|
|
|
1
|
+
|
|
2
|
+
//
|
|
3
|
+
// primitive_color_value.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 bildAlphaAlphaBildRed80 = Color(0xCCDE0000); /** Used on elevation effects. */
|
|
16
|
+
static const bildAlphaAlphaBlack0 = Color(0x00000000);
|
|
17
|
+
static const bildAlphaAlphaBlack05 = Color(0x0D000000);
|
|
18
|
+
static const bildAlphaAlphaBlack10 = Color(0x1A000000);
|
|
19
|
+
static const bildAlphaAlphaBlack20 = Color(0x33000000);
|
|
20
|
+
static const bildAlphaAlphaBlack30 = Color(0x4D000000);
|
|
21
|
+
static const bildAlphaAlphaBlack35 = Color(0x59000000);
|
|
22
|
+
static const bildAlphaAlphaBlack50 = Color(0x80000000);
|
|
23
|
+
static const bildAlphaAlphaBlack60 = Color(0x99000000); /** Used on elevation effects. */
|
|
24
|
+
static const bildAlphaAlphaBlack70 = Color(0xB3000000); /** Used on elevation effects. */
|
|
25
|
+
static const bildAlphaAlphaBlack80 = Color(0xCC000000); /** Used on elevation effects. */
|
|
26
|
+
static const bildAlphaAlphaWhite10 = Color(0x1AFFFFFF);
|
|
27
|
+
static const bildAlphaAlphaWhite20 = Color(0x33FFFFFF);
|
|
28
|
+
static const bildAlphaAlphaWhite30 = Color(0x4DFFFFFF);
|
|
29
|
+
static const bildAlphaAlphaWhite35 = Color(0x59FFFFFF);
|
|
30
|
+
static const bildAlphaAlphaWhite60 = Color(0x99FFFFFF); /** Used on elevation effects. */
|
|
31
|
+
static const bildAlphaAlphaWhite70 = Color(0xB3FFFFFF); /** Used on elevation effects. */
|
|
32
|
+
static const bildAlphaAlphaWhite80 = Color(0xCCFFFFFF); /** Used on elevation effects. */
|
|
33
|
+
static const bildBlueBildBlue = Color(0xFF00B0FF); /** This Blue color was taken from the Weather 2024 project. Tone: 069 */
|
|
34
|
+
static const bildGrayBild010 = Color(0xFF1C1C1C);
|
|
35
|
+
static const bildGrayBild015 = Color(0xFF242629);
|
|
36
|
+
static const bildGrayBild020 = Color(0xFF2B3038);
|
|
37
|
+
static const bildGrayBild025 = Color(0xFF333D40);
|
|
38
|
+
static const bildGrayBild035 = Color(0xFF4A5259);
|
|
39
|
+
static const bildGrayBild045 = Color(0xFF666B70);
|
|
40
|
+
static const bildGrayBild060 = Color(0xFF8C9196);
|
|
41
|
+
static const bildGrayBild073 = Color(0xFFADB5BA);
|
|
42
|
+
static const bildGrayBild085 = Color(0xFFCFD4D9);
|
|
43
|
+
static const bildGrayBild08550 = Color(0x80CFD4D9); /** The 50% opacity on this color makes it equivalent to BILD093. */
|
|
44
|
+
static const bildGrayBild093 = Color(0xFFE8EDF0);
|
|
45
|
+
static const bildGrayBild096 = Color(0xFFF2F5F5);
|
|
46
|
+
static const bildGreenBildGreen040 = Color(0xFF006E3D); /** This value of green was found in a text field's text color. */
|
|
47
|
+
static const bildGreenBildGreen056 = Color(0xFF17995C);
|
|
48
|
+
static const bildGreenBildGreen05650 = Color(0x80009C59);
|
|
49
|
+
static const bildGreenBildGreen063 = Color(0xFF00B066);
|
|
50
|
+
static const bildGreenBildGreen070 = Color(0xFF00C273);
|
|
51
|
+
static const bildGreenBildGreen093 = Color(0xFFCFF5E3);
|
|
52
|
+
static const bildGreenBildGreen09350 = Color(0x80CFF5E3);
|
|
53
|
+
static const bildNeutralBild100 = Color(0xFFFFFFFF);
|
|
54
|
+
static const bildNeutralBildBlack = Color(0xFF000000);
|
|
55
|
+
static const bildOrangeBildOrange = Color(0xFFFC8226); /** Tone: 067 */
|
|
56
|
+
static const bildPurpleBildBerry = Color(0xFF541A38); /** Tone: 020 */
|
|
57
|
+
static const bildRedBildRed = Color(0xFFDE0000); /** Tone 046 */
|
|
58
|
+
static const bildRedBildRed035 = Color(0xFFB00003);
|
|
59
|
+
static const bildRedBildRed053 = Color(0xFFF52E2E);
|
|
60
|
+
static const bildTextLabelsBild015 = BILD015; /** This is a variable used only for documentation purposes in the design system Figma Foundations pages. */
|
|
61
|
+
static const bildTextLabelsBild025 = BILD025; /** This is a variable used only for documentation purposes in the design system Figma Foundations pages. */
|
|
62
|
+
static const bildTextLabelsBild035 = BILD035; /** This is a variable used only for documentation purposes in the design system Figma Foundations pages. */
|
|
63
|
+
static const bildTextLabelsBild045 = BILD045; /** This is a variable used only for documentation purposes in the design system Figma Foundations pages. */
|
|
64
|
+
static const bildTextLabelsBild060 = BILD060; /** This is a variable used only for documentation purposes in the design system Figma Foundations pages. */
|
|
65
|
+
static const bildTextLabelsBild073 = BILD073; /** This is a variable used only for documentation purposes in the design system Figma Foundations pages. */
|
|
66
|
+
static const bildTextLabelsBild085 = BILD085; /** This is a variable used only for documentation purposes in the design system Figma Foundations pages. */
|
|
67
|
+
static const bildTextLabelsBild093 = BILD093; /** This is a variable used only for documentation purposes in the design system Figma Foundations pages. */
|
|
68
|
+
static const bildTextLabelsBild096 = BILD096; /** This is a variable used only for documentation purposes in the design system Figma Foundations pages. */
|
|
69
|
+
static const bildTextLabelsBild100 = BILD100; /** This is a variable used only for documentation purposes in the design system Figma Foundations pages. */
|
|
70
|
+
static const bildTextLabelsBildGreen063 = BILDGreen063; /** This is a variable used only for documentation purposes in the design system Figma Foundations pages. */
|
|
71
|
+
static const bildTextLabelsBildGreen070 = BILDGreen070; /** This is a variable used only for documentation purposes in the design system Figma Foundations pages. */
|
|
72
|
+
static const bildTextLabelsBildGreen093 = BILDGreen093; /** This is a variable used only for documentation purposes in the design system Figma Foundations pages. */
|
|
73
|
+
static const bildTextLabelsBildOrange = BILDOrange; /** This is a variable used only for documentation purposes in the design system Figma Foundations pages. */
|
|
74
|
+
static const bildTextLabelsBildRed = BILDRed; /** This is a variable used only for documentation purposes in the design system Figma Foundations pages. */
|
|
75
|
+
static const bildTextLabelsBildRed035 = BILDRed035; /** This is a variable used only for documentation purposes in the design system Figma Foundations pages. */
|
|
76
|
+
static const bildTextLabelsBildRed053 = BILDRed053; /** This is a variable used only for documentation purposes in the design system Figma Foundations pages. */
|
|
77
|
+
static const bildTextLabelsBildYellow = BILDYellow; /** This is a variable used only for documentation purposes in the design system Figma Foundations pages. */
|
|
78
|
+
static const bildYellowBildYellow = Color(0xFFFFBF00); /** Tone: 081 */
|
|
79
|
+
static const opacityOpacity00 = 0;
|
|
80
|
+
static const opacityOpacity05 = 5;
|
|
81
|
+
static const opacityOpacity10 = 10;
|
|
82
|
+
static const opacityOpacity100 = 100;
|
|
83
|
+
static const opacityOpacity20 = 20;
|
|
84
|
+
static const opacityOpacity30 = 30;
|
|
85
|
+
static const opacityOpacity40 = 40;
|
|
86
|
+
static const opacityOpacity50 = 50;
|
|
87
|
+
static const opacityOpacity60 = 60;
|
|
88
|
+
static const opacityOpacity70 = 70;
|
|
89
|
+
static const opacityOpacity80 = 80;
|
|
90
|
+
static const opacityOpacity90 = 90;
|
|
91
|
+
static const partnerAubiAubiCore = Color(0xFFF00000);
|
|
92
|
+
static const partnerBzBzCore = Color(0xFFE3001C);
|
|
93
|
+
static const partnerComputerBildCobiCore = Color(0xFFDB241C);
|
|
94
|
+
static const partnerFitbookFitbookCore = Color(0xFFFF96B8);
|
|
95
|
+
static const partnerKaufberaterKaufberaterCore = Color(0xFF54476E);
|
|
96
|
+
static const partnerMyHomeMyhomeCore = Color(0xFF66CCCC);
|
|
97
|
+
static const partnerPetbookPetbookCore = Color(0xFFBADB91);
|
|
98
|
+
static const partnerTechbookTechbookCore = Color(0xFF94E3FF);
|
|
99
|
+
static const partnerTravelbookTravelbookCore = Color(0xFF8FF0ED);
|
|
100
|
+
static const sportBildAlphaSpobiBlue0160 = Color(0x000A264F);
|
|
101
|
+
static const sportBildAlphaSpobiBlue01670 = Color(0xB30A264F);
|
|
102
|
+
static const sportBildBlueSpobiBlue010 = Color(0xFF081729);
|
|
103
|
+
static const sportBildBlueSpobiBlue016 = Color(0xFF0A264F); /** This variable in the current online CSS is called main-tenant-color for the spobi tenant. */
|
|
104
|
+
static const sportBildBlueSpobiBlue029 = Color(0xFF174582); /** This variable in the current online CSS is called secondary-tenant-color */
|
|
105
|
+
static const sportBildBlueSpobiBlue038 = Color(0xFF305999);
|
|
106
|
+
static const sportBildBlueSpobiBlue081 = Color(0xFFBDC9DB);
|
|
107
|
+
static const sportBildBlueSpobiBlue098 = Color(0xFFF7FAFC);
|
|
108
|
+
static const sportBildRedSpobiRed = Color(0xFFE62629);
|
|
109
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
|
|
2
|
+
//
|
|
3
|
+
// primitive_font_value.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 fontFamilyAdvertorialFontFamilyLucidaGrande = Lucida Grande;
|
|
16
|
+
static const fontFamilyBildFontFamilyGotham = Gotham;
|
|
17
|
+
static const fontFamilyBildFontFamilyGothamCond = Gotham Condensed;
|
|
18
|
+
static const fontFamilyBildFontFamilyGothamXNarrow = Gotham XNarrow;
|
|
19
|
+
static const fontFamilySportBildFontFamilyAntennaCond = AntennaCond;
|
|
20
|
+
static const fontFamilySportBildFontFamilyAntennaExtraCond = AntennaExtraCond;
|
|
21
|
+
static const fontFamilySportBildFontFamilyInter = Inter;
|
|
22
|
+
static const fontWeight1000UltraFontWeight = 1000;
|
|
23
|
+
static const fontWeight100ThinFontWeight = 100;
|
|
24
|
+
static const fontWeight200ExtraLightFontWeight = 200;
|
|
25
|
+
static const fontWeight300LightFontWeight = 300;
|
|
26
|
+
static const fontWeight350BookFontWeight = 350;
|
|
27
|
+
static const fontWeight400BookFontWeight = 400;
|
|
28
|
+
static const fontWeight500MediumFontWeight = 500;
|
|
29
|
+
static const fontWeight600BoldFontWeight = 600;
|
|
30
|
+
static const fontWeight700BlackFontWeight = 700; /** 700 is considered black weight because Gotham Condensed is the primary font family (most used in headlines). In other font families 700 is not black weight but bold. */
|
|
31
|
+
static const fontWeight800BlackFontWeight = 800;
|
|
32
|
+
static const fontWeight900ExtraBlackFontWeight = 900;
|
|
33
|
+
static const fontWeightBlackFontWeightSt = Black;
|
|
34
|
+
static const fontWeightBoldItalicFontWeightSt = Bold Italic;
|
|
35
|
+
static const fontWeightString1000UltraFontWeight = 1000;
|
|
36
|
+
static const fontWeightString100ThinFontWeight = 100;
|
|
37
|
+
static const fontWeightString200ExtraLightFontWeight = 200;
|
|
38
|
+
static const fontWeightString350BookFontWeight = 350;
|
|
39
|
+
static const fontWeightString400BookFontWeight = 400;
|
|
40
|
+
static const fontWeightString500MediumFontWeight = 500;
|
|
41
|
+
static const fontWeightString600BoldFontWeight = 600;
|
|
42
|
+
static const fontWeightString600BoldItalicFontWeight = Bold Italic;
|
|
43
|
+
static const fontWeightString700BlackFontWeight = 700;
|
|
44
|
+
static const fontWeightString700BlackItalicFontWeight = Black Italic;
|
|
45
|
+
static const fontWeightString800BlackFontWeight = 800;
|
|
46
|
+
static const fontWeightString900ExtraBlackFontWeight = 900;
|
|
47
|
+
static const letterSpacingLetterSpace0 = 0; /** This variable is a primitive for use in creating semantic text styles that need to use a default letter spacing value of 0. */
|
|
48
|
+
static const letterSpacingLetterSpace025 = 0.25; /** This variable is a primitive for use in creating semantic text styles that need to use a subtle positive letter spacing value of 0.25. */
|
|
49
|
+
static const letterSpacingLetterSpace025 = -0.25; /** This variable is a primitive for use in creating semantic text styles that need to use a subtle small letter spacing value of -0.25. */
|
|
50
|
+
static const letterSpacingLetterSpace05 = 0.5; /** This variable is a primitive for use in creating semantic text styles that need to use a slight positive letter spacing value of 0.5. */
|
|
51
|
+
static const letterSpacingLetterSpace05 = -0.5; /** This variable is a primitive for use in creating semantic variables that need to use a subtle negative letter spacing value of -0.5. */
|
|
52
|
+
static const letterSpacingLetterSpace1 = 1; /** This variable is a primitive for use in creating semantic text styles that need to use a positive letter spacing value of 1. */
|
|
53
|
+
static const letterSpacingLetterSpace1 = -1; /** This variable is a primitive for use in creating semantic variables that need to use a negative letter spacing value of -1. */
|
|
54
|
+
static const letterSpacingLetterSpace2 = 2; /** This variable is a primitive for use in creating semantic text styles that need to use a large letter spacing value of 2. */
|
|
55
|
+
static const letterSpacingLetterSpace2 = -2; /** This variable is a primitive for use in creating semantic text styles that need to use a large negative letter spacing value of -2. This is usually reserved for large texts styles that are used on titles or headlines. */
|
|
56
|
+
static const letterSpacingLetterSpace3 = 3; /** This variable is a primitive for use in creating semantic text styles that need to use a much larger letter spacing value of 3. Text styles that have smaller font sizes should use increasingly positive values for their letter spacings on smaller device sizes. */
|
|
57
|
+
static const letterSpacingLetterSpace3 = -3; /** This variable is a primitive for use in creating semantic text styles that need to use a large negative letter spacing value of -3. Text styles that have larger font sizes should use increasingly negative values for their letter spacings on larger device sizes. */
|
|
58
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
|
|
2
|
+
//
|
|
3
|
+
// primitive_size_value.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 size0125x = 1;
|
|
16
|
+
static const size025x = 2;
|
|
17
|
+
static const size05x = 4;
|
|
18
|
+
static const size075x = 6;
|
|
19
|
+
static const size0x = 0;
|
|
20
|
+
static const size100x = 800;
|
|
21
|
+
static const size10x = 80;
|
|
22
|
+
static const size115x = 92;
|
|
23
|
+
static const size11625x = 930;
|
|
24
|
+
static const size124x = 992;
|
|
25
|
+
static const size125x = 100;
|
|
26
|
+
static const size125x = 10;
|
|
27
|
+
static const size128x = 1024;
|
|
28
|
+
static const size12x = 96;
|
|
29
|
+
static const size15x = 120;
|
|
30
|
+
static const size15x = 12;
|
|
31
|
+
static const size1625 = 130;
|
|
32
|
+
static const size168x = 1344;
|
|
33
|
+
static const size175x = 140;
|
|
34
|
+
static const size175x = 14;
|
|
35
|
+
static const size185x = 148;
|
|
36
|
+
static const size1x = 8;
|
|
37
|
+
static const size20x = 160;
|
|
38
|
+
static const size225x = 180;
|
|
39
|
+
static const size225x = 18;
|
|
40
|
+
static const size25x = 200;
|
|
41
|
+
static const size25x = 20;
|
|
42
|
+
static const size275x = 220;
|
|
43
|
+
static const size275x = 22;
|
|
44
|
+
static const size2x = 16;
|
|
45
|
+
static const size30x = 240;
|
|
46
|
+
static const size325x = 26;
|
|
47
|
+
static const size35x = 280;
|
|
48
|
+
static const size35x = 28;
|
|
49
|
+
static const size375x = 30;
|
|
50
|
+
static const size3x = 24;
|
|
51
|
+
static const size40x = 320;
|
|
52
|
+
static const size45x = 36;
|
|
53
|
+
static const size4x = 32;
|
|
54
|
+
static const size50x = 400;
|
|
55
|
+
static const size525x = 42;
|
|
56
|
+
static const size5x = 40;
|
|
57
|
+
static const size60x = 480;
|
|
58
|
+
static const size6x = 48;
|
|
59
|
+
static const size7x = 56;
|
|
60
|
+
static const size80x = 640;
|
|
61
|
+
static const size875x = 700;
|
|
62
|
+
static const size8x = 64;
|
|
63
|
+
static const size9x = 72;
|
|
64
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
|
|
2
|
+
//
|
|
3
|
+
// primitive_space_value.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 space025x = 2;
|
|
16
|
+
static const space025x = -2;
|
|
17
|
+
static const space05x = 4;
|
|
18
|
+
static const space075x = 6;
|
|
19
|
+
static const space0x = 0;
|
|
20
|
+
static const space10x = 80;
|
|
21
|
+
static const space125x = 10;
|
|
22
|
+
static const space12x = 96;
|
|
23
|
+
static const space15x = 12;
|
|
24
|
+
static const space175x = 14;
|
|
25
|
+
static const space1x = 8;
|
|
26
|
+
static const space20x = 160;
|
|
27
|
+
static const space25x = 20;
|
|
28
|
+
static const space275x = 22;
|
|
29
|
+
static const space2x = 16;
|
|
30
|
+
static const space35x = 28;
|
|
31
|
+
static const space3x = 24;
|
|
32
|
+
static const space45x = 36;
|
|
33
|
+
static const space4x = 32;
|
|
34
|
+
static const space5x = 40;
|
|
35
|
+
static const space6x = 48;
|
|
36
|
+
static const space75x = 60;
|
|
37
|
+
static const space85x = 68;
|
|
38
|
+
static const space8x = 64;
|
|
39
|
+
static const space9x = 72;
|
|
40
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
|
|
2
|
+
//
|
|
3
|
+
// density_compact.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 componentButtonButtonContentGapSpace = 6; /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling space could work across different content scaling / size / contrast themes. */
|
|
16
|
+
static const componentButtonButtonInlineSpace = 16; /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling space could work across different content scaling / size / contrast themes. */
|
|
17
|
+
static const componentButtonButtonLabelFontSize = 15; /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling size could work across different content scaling / size / contrast themes. Font size across devices: 15 - 17 - 19 */
|
|
18
|
+
static const componentButtonButtonStackSpace = 6; /** This variable is in the SpaceScaling collection. It was made to experiment with how scaling space could work across different content scaling / size / contrast themes. */
|
|
19
|
+
static const componentInputfieldInputFieldHeightSize = 36;
|
|
20
|
+
static const componentInputfieldInputFieldInlineSpace = 16;
|
|
21
|
+
static const componentInputfieldInputFieldLabelFontSize = 16; /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling size could work across different content scaling / size / contrast themes. Font size across scaling options: compact 15 - default 17 - spacious 19 */
|
|
22
|
+
static const componentInputfieldInputFieldStackSpace = 6;
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
|
|
2
|
+
//
|
|
3
|
+
// density_default.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 componentButtonButtonContentGapSpace = 8; /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling space could work across different content scaling / size / contrast themes. */
|
|
16
|
+
static const componentButtonButtonInlineSpace = 20; /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling space could work across different content scaling / size / contrast themes. */
|
|
17
|
+
static const componentButtonButtonLabelFontSize = 17; /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling size could work across different content scaling / size / contrast themes. Font size across devices: 15 - 17 - 19 */
|
|
18
|
+
static const componentButtonButtonStackSpace = 8; /** This variable is in the SpaceScaling collection. It was made to experiment with how scaling space could work across different content scaling / size / contrast themes. */
|
|
19
|
+
static const componentInputfieldInputFieldHeightSize = 40;
|
|
20
|
+
static const componentInputfieldInputFieldInlineSpace = 16;
|
|
21
|
+
static const componentInputfieldInputFieldLabelFontSize = 17; /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling size could work across different content scaling / size / contrast themes. Font size across scaling options: compact 15 - default 17 - spacious 19 */
|
|
22
|
+
static const componentInputfieldInputFieldStackSpace = 8;
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
|
|
2
|
+
//
|
|
3
|
+
// density_spacious.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 componentButtonButtonContentGapSpace = 8; /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling space could work across different content scaling / size / contrast themes. */
|
|
16
|
+
static const componentButtonButtonInlineSpace = 24; /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling space could work across different content scaling / size / contrast themes. */
|
|
17
|
+
static const componentButtonButtonLabelFontSize = 19; /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling size could work across different content scaling / size / contrast themes. Font size across devices: 15 - 17 - 19 */
|
|
18
|
+
static const componentButtonButtonStackSpace = 12; /** This variable is in the SpaceScaling collection. It was made to experiment with how scaling space could work across different content scaling / size / contrast themes. */
|
|
19
|
+
static const componentInputfieldInputFieldHeightSize = 48;
|
|
20
|
+
static const componentInputfieldInputFieldInlineSpace = 16;
|
|
21
|
+
static const componentInputfieldInputFieldLabelFontSize = 19; /** This variable is in the SpaceScaling Collection. It was made to experiment with how scaling size could work across different content scaling / size / contrast themes. Font size across scaling options: compact 15 - default 17 - spacious 19 */
|
|
22
|
+
static const componentInputfieldInputFieldStackSpace = 12;
|
|
23
|
+
}
|