@fluentui/react-theme 9.0.0-nightly.d730088d7f.0 → 9.0.0-rc.10
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/CHANGELOG.json +349 -10
- package/CHANGELOG.md +157 -40
- package/dist/index.d.ts +433 -0
- package/{lib → dist}/tsdoc-metadata.json +0 -0
- package/lib/alias/darkColor.js +147 -0
- package/lib/alias/darkColor.js.map +1 -0
- package/lib/alias/darkColorPalette.js +33 -0
- package/lib/alias/darkColorPalette.js.map +1 -0
- package/lib/alias/highContrastColor.js +147 -0
- package/lib/alias/highContrastColor.js.map +1 -0
- package/lib/alias/highContrastColorPalette.js +33 -0
- package/lib/alias/highContrastColorPalette.js.map +1 -0
- package/lib/alias/lightColor.js +147 -0
- package/lib/alias/lightColor.js.map +1 -0
- package/lib/alias/lightColorPalette.js +33 -0
- package/lib/alias/lightColorPalette.js.map +1 -0
- package/lib/alias/teamsDarkColor.js +147 -0
- package/lib/alias/teamsDarkColor.js.map +1 -0
- package/lib/alias/teamsDarkColorPalette.js +33 -0
- package/lib/alias/teamsDarkColorPalette.js.map +1 -0
- package/lib/global/borderRadius.js +1 -1
- package/lib/global/borderRadius.js.map +1 -1
- package/lib/global/brandColors.js +53 -31
- package/lib/global/brandColors.js.map +1 -1
- package/lib/global/colors.js +148 -130
- package/lib/global/colors.js.map +1 -1
- package/lib/global/curves.js +12 -0
- package/lib/global/curves.js.map +1 -0
- package/lib/global/durations.js +10 -0
- package/lib/global/durations.js.map +1 -0
- package/lib/global/fonts.js +4 -4
- package/lib/global/fonts.js.map +1 -1
- package/lib/global/index.js +5 -0
- package/lib/global/index.js.map +1 -1
- package/lib/global/spacings.js +40 -0
- package/lib/global/spacings.js.map +1 -0
- package/lib/global/strokeWidths.js +1 -1
- package/lib/global/strokeWidths.js.map +1 -1
- package/lib/global/typographyStyles.js +104 -0
- package/lib/global/typographyStyles.js.map +1 -0
- package/lib/index.js +5 -2
- package/lib/index.js.map +1 -1
- package/lib/themeToTokensObject.js +19 -0
- package/lib/themeToTokensObject.js.map +1 -0
- package/lib/themes/index.js.map +1 -1
- package/lib/themes/teams/darkTheme.js +1 -1
- package/lib/themes/teams/darkTheme.js.map +1 -1
- package/lib/themes/teams/highContrastTheme.js +1 -1
- package/lib/themes/teams/highContrastTheme.js.map +1 -1
- package/lib/themes/teams/index.js.map +1 -1
- package/lib/themes/teams/lightTheme.js +1 -1
- package/lib/themes/teams/lightTheme.js.map +1 -1
- package/lib/themes/web/darkTheme.js +1 -1
- package/lib/themes/web/darkTheme.js.map +1 -1
- package/lib/themes/web/index.js +0 -1
- package/lib/themes/web/index.js.map +1 -1
- package/lib/themes/web/lightTheme.js +1 -1
- package/lib/themes/web/lightTheme.js.map +1 -1
- package/lib/tokens.js +426 -0
- package/lib/tokens.js.map +1 -0
- package/lib/types.js.map +1 -1
- package/lib/utils/createDarkTheme.js +22 -5
- package/lib/utils/createDarkTheme.js.map +1 -1
- package/lib/utils/createHighContrastTheme.js +22 -5
- package/lib/utils/createHighContrastTheme.js.map +1 -1
- package/lib/utils/createLightTheme.js +22 -5
- package/lib/utils/createLightTheme.js.map +1 -1
- package/lib/utils/createTeamsDarkTheme.js +22 -5
- package/lib/utils/createTeamsDarkTheme.js.map +1 -1
- package/lib/utils/index.js +0 -2
- package/lib/utils/index.js.map +1 -1
- package/lib/utils/shadows.js +7 -7
- package/lib/utils/shadows.js.map +1 -1
- package/lib-commonjs/alias/darkColor.js +157 -0
- package/lib-commonjs/alias/darkColor.js.map +1 -0
- package/lib-commonjs/alias/darkColorPalette.js +41 -0
- package/lib-commonjs/alias/darkColorPalette.js.map +1 -0
- package/lib-commonjs/alias/highContrastColor.js +157 -0
- package/lib-commonjs/alias/highContrastColor.js.map +1 -0
- package/lib-commonjs/alias/highContrastColorPalette.js +41 -0
- package/lib-commonjs/alias/highContrastColorPalette.js.map +1 -0
- package/lib-commonjs/alias/lightColor.js +157 -0
- package/lib-commonjs/alias/lightColor.js.map +1 -0
- package/lib-commonjs/alias/lightColorPalette.js +41 -0
- package/lib-commonjs/alias/lightColorPalette.js.map +1 -0
- package/lib-commonjs/alias/teamsDarkColor.js +157 -0
- package/lib-commonjs/alias/teamsDarkColor.js.map +1 -0
- package/lib-commonjs/alias/teamsDarkColorPalette.js +41 -0
- package/lib-commonjs/alias/teamsDarkColorPalette.js.map +1 -0
- package/lib-commonjs/global/borderRadius.js.map +1 -1
- package/lib-commonjs/global/brandColors.js +52 -30
- package/lib-commonjs/global/brandColors.js.map +1 -1
- package/lib-commonjs/global/colors.js +138 -120
- package/lib-commonjs/global/colors.js.map +1 -1
- package/lib-commonjs/global/curves.js +18 -0
- package/lib-commonjs/global/curves.js.map +1 -0
- package/lib-commonjs/global/durations.js +16 -0
- package/lib-commonjs/global/durations.js.map +1 -0
- package/lib-commonjs/global/fonts.js.map +1 -1
- package/lib-commonjs/global/index.js +11 -1
- package/lib-commonjs/global/index.js.map +1 -1
- package/lib-commonjs/global/spacings.js +46 -0
- package/lib-commonjs/global/spacings.js.map +1 -0
- package/lib-commonjs/global/strokeWidths.js.map +1 -1
- package/lib-commonjs/global/typographyStyles.js +112 -0
- package/lib-commonjs/global/typographyStyles.js.map +1 -0
- package/lib-commonjs/index.js +85 -3
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/themeToTokensObject.js +28 -0
- package/lib-commonjs/themeToTokensObject.js.map +1 -0
- package/lib-commonjs/themes/index.js +1 -1
- package/lib-commonjs/themes/index.js.map +1 -1
- package/lib-commonjs/themes/teams/darkTheme.js +2 -2
- package/lib-commonjs/themes/teams/darkTheme.js.map +1 -1
- package/lib-commonjs/themes/teams/highContrastTheme.js +1 -1
- package/lib-commonjs/themes/teams/highContrastTheme.js.map +1 -1
- package/lib-commonjs/themes/teams/index.js +1 -1
- package/lib-commonjs/themes/teams/index.js.map +1 -1
- package/lib-commonjs/themes/teams/lightTheme.js +2 -2
- package/lib-commonjs/themes/teams/lightTheme.js.map +1 -1
- package/lib-commonjs/themes/web/darkTheme.js +2 -2
- package/lib-commonjs/themes/web/darkTheme.js.map +1 -1
- package/lib-commonjs/themes/web/index.js +1 -3
- package/lib-commonjs/themes/web/index.js.map +1 -1
- package/lib-commonjs/themes/web/lightTheme.js +2 -2
- package/lib-commonjs/themes/web/lightTheme.js.map +1 -1
- package/lib-commonjs/tokens.js +432 -0
- package/lib-commonjs/tokens.js.map +1 -0
- package/lib-commonjs/types.js.map +1 -1
- package/lib-commonjs/utils/createDarkTheme.js +27 -7
- package/lib-commonjs/utils/createDarkTheme.js.map +1 -1
- package/lib-commonjs/utils/createHighContrastTheme.js +27 -7
- package/lib-commonjs/utils/createHighContrastTheme.js.map +1 -1
- package/lib-commonjs/utils/createLightTheme.js +27 -7
- package/lib-commonjs/utils/createLightTheme.js.map +1 -1
- package/lib-commonjs/utils/createTeamsDarkTheme.js +27 -7
- package/lib-commonjs/utils/createTeamsDarkTheme.js.map +1 -1
- package/lib-commonjs/utils/index.js +1 -13
- package/lib-commonjs/utils/index.js.map +1 -1
- package/lib-commonjs/utils/shadows.js +7 -7
- package/lib-commonjs/utils/shadows.js.map +1 -1
- package/package.json +16 -12
- package/dist/react-theme.d.ts +0 -326
- package/lib/alias/dark.d.ts +0 -3
- package/lib/alias/dark.js +0 -117
- package/lib/alias/dark.js.map +0 -1
- package/lib/alias/highContrast.d.ts +0 -3
- package/lib/alias/highContrast.js +0 -117
- package/lib/alias/highContrast.js.map +0 -1
- package/lib/alias/light.d.ts +0 -3
- package/lib/alias/light.js +0 -117
- package/lib/alias/light.js.map +0 -1
- package/lib/alias/teamsDark.d.ts +0 -3
- package/lib/alias/teamsDark.js +0 -117
- package/lib/alias/teamsDark.js.map +0 -1
- package/lib/global/borderRadius.d.ts +0 -2
- package/lib/global/brandColors.d.ts +0 -3
- package/lib/global/colors.d.ts +0 -15
- package/lib/global/fonts.d.ts +0 -5
- package/lib/global/index.d.ts +0 -4
- package/lib/global/strokeWidths.d.ts +0 -2
- package/lib/index.d.ts +0 -3
- package/lib/themes/index.d.ts +0 -2
- package/lib/themes/teams/darkTheme.d.ts +0 -2
- package/lib/themes/teams/highContrastTheme.d.ts +0 -2
- package/lib/themes/teams/index.d.ts +0 -3
- package/lib/themes/teams/lightTheme.d.ts +0 -2
- package/lib/themes/web/darkTheme.d.ts +0 -2
- package/lib/themes/web/highContrastTheme.d.ts +0 -2
- package/lib/themes/web/highContrastTheme.js +0 -3
- package/lib/themes/web/highContrastTheme.js.map +0 -1
- package/lib/themes/web/index.d.ts +0 -3
- package/lib/themes/web/lightTheme.d.ts +0 -2
- package/lib/types.d.ts +0 -327
- package/lib/utils/createDarkTheme.d.ts +0 -2
- package/lib/utils/createHighContrastTheme.d.ts +0 -2
- package/lib/utils/createLightTheme.d.ts +0 -2
- package/lib/utils/createTeamsDarkTheme.d.ts +0 -2
- package/lib/utils/index.d.ts +0 -6
- package/lib/utils/mergeThemes.d.ts +0 -2
- package/lib/utils/mergeThemes.js +0 -14
- package/lib/utils/mergeThemes.js.map +0 -1
- package/lib/utils/shadows.d.ts +0 -2
- package/lib/utils/themeToCSSVariables.d.ts +0 -2
- package/lib/utils/themeToCSSVariables.js +0 -12
- package/lib/utils/themeToCSSVariables.js.map +0 -1
- package/lib-commonjs/alias/dark.d.ts +0 -3
- package/lib-commonjs/alias/dark.js +0 -128
- package/lib-commonjs/alias/dark.js.map +0 -1
- package/lib-commonjs/alias/highContrast.d.ts +0 -3
- package/lib-commonjs/alias/highContrast.js +0 -128
- package/lib-commonjs/alias/highContrast.js.map +0 -1
- package/lib-commonjs/alias/light.d.ts +0 -3
- package/lib-commonjs/alias/light.js +0 -128
- package/lib-commonjs/alias/light.js.map +0 -1
- package/lib-commonjs/alias/teamsDark.d.ts +0 -3
- package/lib-commonjs/alias/teamsDark.js +0 -128
- package/lib-commonjs/alias/teamsDark.js.map +0 -1
- package/lib-commonjs/global/borderRadius.d.ts +0 -2
- package/lib-commonjs/global/brandColors.d.ts +0 -3
- package/lib-commonjs/global/colors.d.ts +0 -15
- package/lib-commonjs/global/fonts.d.ts +0 -5
- package/lib-commonjs/global/index.d.ts +0 -4
- package/lib-commonjs/global/strokeWidths.d.ts +0 -2
- package/lib-commonjs/index.d.ts +0 -3
- package/lib-commonjs/themes/index.d.ts +0 -2
- package/lib-commonjs/themes/teams/darkTheme.d.ts +0 -2
- package/lib-commonjs/themes/teams/highContrastTheme.d.ts +0 -2
- package/lib-commonjs/themes/teams/index.d.ts +0 -3
- package/lib-commonjs/themes/teams/lightTheme.d.ts +0 -2
- package/lib-commonjs/themes/web/darkTheme.d.ts +0 -2
- package/lib-commonjs/themes/web/highContrastTheme.d.ts +0 -2
- package/lib-commonjs/themes/web/highContrastTheme.js +0 -11
- package/lib-commonjs/themes/web/highContrastTheme.js.map +0 -1
- package/lib-commonjs/themes/web/index.d.ts +0 -3
- package/lib-commonjs/themes/web/lightTheme.d.ts +0 -2
- package/lib-commonjs/types.d.ts +0 -327
- package/lib-commonjs/utils/createDarkTheme.d.ts +0 -2
- package/lib-commonjs/utils/createHighContrastTheme.d.ts +0 -2
- package/lib-commonjs/utils/createLightTheme.d.ts +0 -2
- package/lib-commonjs/utils/createTeamsDarkTheme.d.ts +0 -2
- package/lib-commonjs/utils/index.d.ts +0 -6
- package/lib-commonjs/utils/mergeThemes.d.ts +0 -2
- package/lib-commonjs/utils/mergeThemes.js +0 -24
- package/lib-commonjs/utils/mergeThemes.js.map +0 -1
- package/lib-commonjs/utils/shadows.d.ts +0 -2
- package/lib-commonjs/utils/themeToCSSVariables.d.ts +0 -2
- package/lib-commonjs/utils/themeToCSSVariables.js +0 -21
- package/lib-commonjs/utils/themeToCSSVariables.js.map +0 -1
package/lib/types.d.ts
DELETED
@@ -1,327 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Design tokens for alias colors
|
3
|
-
*/
|
4
|
-
export declare type ColorTokens = {
|
5
|
-
colorNeutralForeground1: string;
|
6
|
-
colorNeutralForeground2: string;
|
7
|
-
colorNeutralForeground2Hover: string;
|
8
|
-
colorNeutralForeground2Pressed: string;
|
9
|
-
colorNeutralForeground2Selected: string;
|
10
|
-
colorNeutralForeground2BrandHover: string;
|
11
|
-
colorNeutralForeground2BrandPressed: string;
|
12
|
-
colorNeutralForeground2BrandSelected: string;
|
13
|
-
colorNeutralForeground3: string;
|
14
|
-
colorNeutralForeground3Hover: string;
|
15
|
-
colorNeutralForeground3Pressed: string;
|
16
|
-
colorNeutralForeground3Selected: string;
|
17
|
-
colorNeutralForeground3BrandHover: string;
|
18
|
-
colorNeutralForeground3BrandPressed: string;
|
19
|
-
colorNeutralForeground3BrandSelected: string;
|
20
|
-
colorNeutralForeground4: string;
|
21
|
-
colorNeutralForegroundDisabled: string;
|
22
|
-
colorBrandForegroundLink: string;
|
23
|
-
colorBrandForegroundLinkHover: string;
|
24
|
-
colorBrandForegroundLinkPressed: string;
|
25
|
-
colorBrandForegroundLinkSelected: string;
|
26
|
-
colorCompoundBrandForeground1: string;
|
27
|
-
colorCompoundBrandForeground1Hover: string;
|
28
|
-
colorCompoundBrandForeground1Pressed: string;
|
29
|
-
colorBrandForeground1: string;
|
30
|
-
colorBrandForeground2: string;
|
31
|
-
colorNeutralForegroundInverted: string;
|
32
|
-
colorNeutralForegroundOnBrand: string;
|
33
|
-
colorNeutralForegroundInvertedLink: string;
|
34
|
-
colorNeutralForegroundInvertedLinkHover: string;
|
35
|
-
colorNeutralForegroundInvertedLinkPressed: string;
|
36
|
-
colorNeutralForegroundInvertedLinkSelected: string;
|
37
|
-
colorNeutralBackground1: string;
|
38
|
-
colorNeutralBackground1Hover: string;
|
39
|
-
colorNeutralBackground1Pressed: string;
|
40
|
-
colorNeutralBackground1Selected: string;
|
41
|
-
colorNeutralBackground2: string;
|
42
|
-
colorNeutralBackground2Hover: string;
|
43
|
-
colorNeutralBackground2Pressed: string;
|
44
|
-
colorNeutralBackground2Selected: string;
|
45
|
-
colorNeutralBackground3: string;
|
46
|
-
colorNeutralBackground3Hover: string;
|
47
|
-
colorNeutralBackground3Pressed: string;
|
48
|
-
colorNeutralBackground3Selected: string;
|
49
|
-
colorNeutralBackground4: string;
|
50
|
-
colorNeutralBackground4Hover: string;
|
51
|
-
colorNeutralBackground4Pressed: string;
|
52
|
-
colorNeutralBackground4Selected: string;
|
53
|
-
colorNeutralBackground5: string;
|
54
|
-
colorNeutralBackground5Hover: string;
|
55
|
-
colorNeutralBackground5Pressed: string;
|
56
|
-
colorNeutralBackground5Selected: string;
|
57
|
-
colorNeutralBackground6: string;
|
58
|
-
colorNeutralBackgroundInverted: string;
|
59
|
-
colorSubtleBackground: string;
|
60
|
-
colorSubtleBackgroundHover: string;
|
61
|
-
colorSubtleBackgroundPressed: string;
|
62
|
-
colorSubtleBackgroundSelected: string;
|
63
|
-
colorTransparentBackground: string;
|
64
|
-
colorTransparentBackgroundHover: string;
|
65
|
-
colorTransparentBackgroundPressed: string;
|
66
|
-
colorTransparentBackgroundSelected: string;
|
67
|
-
colorNeutralBackgroundDisabled: string;
|
68
|
-
colorNeutralStencil1: string;
|
69
|
-
colorNeutralStencil2: string;
|
70
|
-
colorBrandBackground: string;
|
71
|
-
colorBrandBackgroundHover: string;
|
72
|
-
colorBrandBackgroundPressed: string;
|
73
|
-
colorBrandBackgroundSelected: string;
|
74
|
-
colorCompoundBrandBackground: string;
|
75
|
-
colorCompoundBrandBackgroundHover: string;
|
76
|
-
colorCompoundBrandBackgroundPressed: string;
|
77
|
-
colorBrandBackgroundStatic: string;
|
78
|
-
colorBrandBackground2: string;
|
79
|
-
colorNeutralStrokeAccessible: string;
|
80
|
-
colorNeutralStrokeAccessibleHover: string;
|
81
|
-
colorNeutralStrokeAccessiblePressed: string;
|
82
|
-
colorNeutralStrokeAccessibleSelected: string;
|
83
|
-
colorNeutralStroke1: string;
|
84
|
-
colorNeutralStroke1Hover: string;
|
85
|
-
colorNeutralStroke1Pressed: string;
|
86
|
-
colorNeutralStroke1Selected: string;
|
87
|
-
colorNeutralStroke2: string;
|
88
|
-
colorNeutralStroke3: string;
|
89
|
-
colorBrandStroke1: string;
|
90
|
-
colorBrandStroke2: string;
|
91
|
-
colorCompoundBrandStroke: string;
|
92
|
-
colorCompoundBrandStrokeHover: string;
|
93
|
-
colorCompoundBrandStrokePressed: string;
|
94
|
-
colorNeutralStrokeDisabled: string;
|
95
|
-
colorTransparentStroke: string;
|
96
|
-
colorTransparentStrokeInteractive: string;
|
97
|
-
colorTransparentStrokeDisabled: string;
|
98
|
-
colorStrokeFocus1: string;
|
99
|
-
colorStrokeFocus2: string;
|
100
|
-
colorNeutralShadowAmbient: string;
|
101
|
-
colorNeutralShadowKey: string;
|
102
|
-
colorNeutralShadowAmbientLighter: string;
|
103
|
-
colorNeutralShadowKeyLighter: string;
|
104
|
-
colorNeutralShadowAmbientDarker: string;
|
105
|
-
colorNeutralShadowKeyDarker: string;
|
106
|
-
colorBrandShadowAmbient: string;
|
107
|
-
colorBrandShadowKey: string;
|
108
|
-
};
|
109
|
-
export declare type ColorPaletteDarkRed = 'colorPaletteDarkRedBackground1' | 'colorPaletteDarkRedBackground2' | 'colorPaletteDarkRedBackground3' | 'colorPaletteDarkRedForeground1' | 'colorPaletteDarkRedForeground2' | 'colorPaletteDarkRedForeground3' | 'colorPaletteDarkRedBorderActive' | 'colorPaletteDarkRedBorder2';
|
110
|
-
export declare type ColorPaletteBurgundy = 'colorPaletteBurgundyBackground1' | 'colorPaletteBurgundyBackground2' | 'colorPaletteBurgundyBackground3' | 'colorPaletteBurgundyForeground1' | 'colorPaletteBurgundyForeground2' | 'colorPaletteBurgundyForeground3' | 'colorPaletteBurgundyBorderActive' | 'colorPaletteBurgundyBorder2';
|
111
|
-
export declare type ColorPaletteCranberry = 'colorPaletteCranberryBackground1' | 'colorPaletteCranberryBackground2' | 'colorPaletteCranberryBackground3' | 'colorPaletteCranberryForeground1' | 'colorPaletteCranberryForeground2' | 'colorPaletteCranberryForeground3' | 'colorPaletteCranberryBorderActive' | 'colorPaletteCranberryBorder2';
|
112
|
-
export declare type ColorPaletteRed = 'colorPaletteRedBackground1' | 'colorPaletteRedBackground2' | 'colorPaletteRedBackground3' | 'colorPaletteRedForeground1' | 'colorPaletteRedForeground2' | 'colorPaletteRedForeground3' | 'colorPaletteRedBorderActive' | 'colorPaletteRedBorder2';
|
113
|
-
export declare type ColorPaletteDarkOrange = 'colorPaletteDarkOrangeBackground1' | 'colorPaletteDarkOrangeBackground2' | 'colorPaletteDarkOrangeBackground3' | 'colorPaletteDarkOrangeForeground1' | 'colorPaletteDarkOrangeForeground2' | 'colorPaletteDarkOrangeForeground3' | 'colorPaletteDarkOrangeBorderActive' | 'colorPaletteDarkOrangeBorder2';
|
114
|
-
export declare type ColorPaletteBronze = 'colorPaletteBronzeBackground1' | 'colorPaletteBronzeBackground2' | 'colorPaletteBronzeBackground3' | 'colorPaletteBronzeForeground1' | 'colorPaletteBronzeForeground2' | 'colorPaletteBronzeForeground3' | 'colorPaletteBronzeBorderActive' | 'colorPaletteBronzeBorder2';
|
115
|
-
export declare type ColorPalettePumpkin = 'colorPalettePumpkinBackground1' | 'colorPalettePumpkinBackground2' | 'colorPalettePumpkinBackground3' | 'colorPalettePumpkinForeground1' | 'colorPalettePumpkinForeground2' | 'colorPalettePumpkinForeground3' | 'colorPalettePumpkinBorderActive' | 'colorPalettePumpkinBorder2';
|
116
|
-
export declare type ColorPaletteOrange = 'colorPaletteOrangeBackground1' | 'colorPaletteOrangeBackground2' | 'colorPaletteOrangeBackground3' | 'colorPaletteOrangeForeground1' | 'colorPaletteOrangeForeground2' | 'colorPaletteOrangeForeground3' | 'colorPaletteOrangeBorderActive' | 'colorPaletteOrangeBorder2';
|
117
|
-
export declare type ColorPalettePeach = 'colorPalettePeachBackground1' | 'colorPalettePeachBackground2' | 'colorPalettePeachBackground3' | 'colorPalettePeachForeground1' | 'colorPalettePeachForeground2' | 'colorPalettePeachForeground3' | 'colorPalettePeachBorderActive' | 'colorPalettePeachBorder2';
|
118
|
-
export declare type ColorPaletteMarigold = 'colorPaletteMarigoldBackground1' | 'colorPaletteMarigoldBackground2' | 'colorPaletteMarigoldBackground3' | 'colorPaletteMarigoldForeground1' | 'colorPaletteMarigoldForeground2' | 'colorPaletteMarigoldForeground3' | 'colorPaletteMarigoldBorderActive' | 'colorPaletteMarigoldBorder2';
|
119
|
-
export declare type ColorPaletteYellow = 'colorPaletteYellowBackground1' | 'colorPaletteYellowBackground2' | 'colorPaletteYellowBackground3' | 'colorPaletteYellowForeground1' | 'colorPaletteYellowForeground2' | 'colorPaletteYellowForeground3' | 'colorPaletteYellowBorderActive' | 'colorPaletteYellowBorder2';
|
120
|
-
export declare type ColorPaletteGold = 'colorPaletteGoldBackground1' | 'colorPaletteGoldBackground2' | 'colorPaletteGoldBackground3' | 'colorPaletteGoldForeground1' | 'colorPaletteGoldForeground2' | 'colorPaletteGoldForeground3' | 'colorPaletteGoldBorderActive' | 'colorPaletteGoldBorder2';
|
121
|
-
export declare type ColorPaletteBrass = 'colorPaletteBrassBackground1' | 'colorPaletteBrassBackground2' | 'colorPaletteBrassBackground3' | 'colorPaletteBrassForeground1' | 'colorPaletteBrassForeground2' | 'colorPaletteBrassForeground3' | 'colorPaletteBrassBorderActive' | 'colorPaletteBrassBorder2';
|
122
|
-
export declare type ColorPaletteBrown = 'colorPaletteBrownBackground1' | 'colorPaletteBrownBackground2' | 'colorPaletteBrownBackground3' | 'colorPaletteBrownForeground1' | 'colorPaletteBrownForeground2' | 'colorPaletteBrownForeground3' | 'colorPaletteBrownBorderActive' | 'colorPaletteBrownBorder2';
|
123
|
-
export declare type ColorPaletteDarkBrown = 'colorPaletteDarkBrownBackground1' | 'colorPaletteDarkBrownBackground2' | 'colorPaletteDarkBrownBackground3' | 'colorPaletteDarkBrownForeground1' | 'colorPaletteDarkBrownForeground2' | 'colorPaletteDarkBrownForeground3' | 'colorPaletteDarkBrownBorderActive' | 'colorPaletteDarkBrownBorder2';
|
124
|
-
export declare type ColorPaletteLime = 'colorPaletteLimeBackground1' | 'colorPaletteLimeBackground2' | 'colorPaletteLimeBackground3' | 'colorPaletteLimeForeground1' | 'colorPaletteLimeForeground2' | 'colorPaletteLimeForeground3' | 'colorPaletteLimeBorderActive' | 'colorPaletteLimeBorder2';
|
125
|
-
export declare type ColorPaletteForest = 'colorPaletteForestBackground1' | 'colorPaletteForestBackground2' | 'colorPaletteForestBackground3' | 'colorPaletteForestForeground1' | 'colorPaletteForestForeground2' | 'colorPaletteForestForeground3' | 'colorPaletteForestBorderActive' | 'colorPaletteForestBorder2';
|
126
|
-
export declare type ColorPaletteSeafoam = 'colorPaletteSeafoamBackground1' | 'colorPaletteSeafoamBackground2' | 'colorPaletteSeafoamBackground3' | 'colorPaletteSeafoamForeground1' | 'colorPaletteSeafoamForeground2' | 'colorPaletteSeafoamForeground3' | 'colorPaletteSeafoamBorderActive' | 'colorPaletteSeafoamBorder2';
|
127
|
-
export declare type ColorPaletteLightGreen = 'colorPaletteLightGreenBackground1' | 'colorPaletteLightGreenBackground2' | 'colorPaletteLightGreenBackground3' | 'colorPaletteLightGreenForeground1' | 'colorPaletteLightGreenForeground2' | 'colorPaletteLightGreenForeground3' | 'colorPaletteLightGreenBorderActive' | 'colorPaletteLightGreenBorder2';
|
128
|
-
export declare type ColorPaletteGreen = 'colorPaletteGreenBackground1' | 'colorPaletteGreenBackground2' | 'colorPaletteGreenBackground3' | 'colorPaletteGreenForeground1' | 'colorPaletteGreenForeground2' | 'colorPaletteGreenForeground3' | 'colorPaletteGreenBorderActive' | 'colorPaletteGreenBorder2';
|
129
|
-
export declare type ColorPaletteDarkGreen = 'colorPaletteDarkGreenBackground1' | 'colorPaletteDarkGreenBackground2' | 'colorPaletteDarkGreenBackground3' | 'colorPaletteDarkGreenForeground1' | 'colorPaletteDarkGreenForeground2' | 'colorPaletteDarkGreenForeground3' | 'colorPaletteDarkGreenBorderActive' | 'colorPaletteDarkGreenBorder2';
|
130
|
-
export declare type ColorPaletteLightTeal = 'colorPaletteLightTealBackground1' | 'colorPaletteLightTealBackground2' | 'colorPaletteLightTealBackground3' | 'colorPaletteLightTealForeground1' | 'colorPaletteLightTealForeground2' | 'colorPaletteLightTealForeground3' | 'colorPaletteLightTealBorderActive' | 'colorPaletteLightTealBorder2';
|
131
|
-
export declare type ColorPaletteTeal = 'colorPaletteTealBackground1' | 'colorPaletteTealBackground2' | 'colorPaletteTealBackground3' | 'colorPaletteTealForeground1' | 'colorPaletteTealForeground2' | 'colorPaletteTealForeground3' | 'colorPaletteTealBorderActive' | 'colorPaletteTealBorder2';
|
132
|
-
export declare type ColorPaletteDarkTeal = 'colorPaletteDarkTealBackground1' | 'colorPaletteDarkTealBackground2' | 'colorPaletteDarkTealBackground3' | 'colorPaletteDarkTealForeground1' | 'colorPaletteDarkTealForeground2' | 'colorPaletteDarkTealForeground3' | 'colorPaletteDarkTealBorderActive' | 'colorPaletteDarkTealBorder2';
|
133
|
-
export declare type ColorPaletteCyan = 'colorPaletteCyanBackground1' | 'colorPaletteCyanBackground2' | 'colorPaletteCyanBackground3' | 'colorPaletteCyanForeground1' | 'colorPaletteCyanForeground2' | 'colorPaletteCyanForeground3' | 'colorPaletteCyanBorderActive' | 'colorPaletteCyanBorder2';
|
134
|
-
export declare type ColorPaletteSteel = 'colorPaletteSteelBackground1' | 'colorPaletteSteelBackground2' | 'colorPaletteSteelBackground3' | 'colorPaletteSteelForeground1' | 'colorPaletteSteelForeground2' | 'colorPaletteSteelForeground3' | 'colorPaletteSteelBorderActive' | 'colorPaletteSteelBorder2';
|
135
|
-
export declare type ColorPaletteLightBlue = 'colorPaletteLightBlueBackground1' | 'colorPaletteLightBlueBackground2' | 'colorPaletteLightBlueBackground3' | 'colorPaletteLightBlueForeground1' | 'colorPaletteLightBlueForeground2' | 'colorPaletteLightBlueForeground3' | 'colorPaletteLightBlueBorderActive' | 'colorPaletteLightBlueBorder2';
|
136
|
-
export declare type ColorPaletteBlue = 'colorPaletteBlueBackground1' | 'colorPaletteBlueBackground2' | 'colorPaletteBlueBackground3' | 'colorPaletteBlueForeground1' | 'colorPaletteBlueForeground2' | 'colorPaletteBlueForeground3' | 'colorPaletteBlueBorderActive' | 'colorPaletteBlueBorder2';
|
137
|
-
export declare type ColorPaletteRoyalBlue = 'colorPaletteRoyalBlueBackground1' | 'colorPaletteRoyalBlueBackground2' | 'colorPaletteRoyalBlueBackground3' | 'colorPaletteRoyalBlueForeground1' | 'colorPaletteRoyalBlueForeground2' | 'colorPaletteRoyalBlueForeground3' | 'colorPaletteRoyalBlueBorderActive' | 'colorPaletteRoyalBlueBorder2';
|
138
|
-
export declare type ColorPaletteDarkBlue = 'colorPaletteDarkBlueBackground1' | 'colorPaletteDarkBlueBackground2' | 'colorPaletteDarkBlueBackground3' | 'colorPaletteDarkBlueForeground1' | 'colorPaletteDarkBlueForeground2' | 'colorPaletteDarkBlueForeground3' | 'colorPaletteDarkBlueBorderActive' | 'colorPaletteDarkBlueBorder2';
|
139
|
-
export declare type ColorPaletteCornflower = 'colorPaletteCornflowerBackground1' | 'colorPaletteCornflowerBackground2' | 'colorPaletteCornflowerBackground3' | 'colorPaletteCornflowerForeground1' | 'colorPaletteCornflowerForeground2' | 'colorPaletteCornflowerForeground3' | 'colorPaletteCornflowerBorderActive' | 'colorPaletteCornflowerBorder2';
|
140
|
-
export declare type ColorPaletteNavy = 'colorPaletteNavyBackground1' | 'colorPaletteNavyBackground2' | 'colorPaletteNavyBackground3' | 'colorPaletteNavyForeground1' | 'colorPaletteNavyForeground2' | 'colorPaletteNavyForeground3' | 'colorPaletteNavyBorderActive' | 'colorPaletteNavyBorder2';
|
141
|
-
export declare type ColorPaletteLavender = 'colorPaletteLavenderBackground1' | 'colorPaletteLavenderBackground2' | 'colorPaletteLavenderBackground3' | 'colorPaletteLavenderForeground1' | 'colorPaletteLavenderForeground2' | 'colorPaletteLavenderForeground3' | 'colorPaletteLavenderBorderActive' | 'colorPaletteLavenderBorder2';
|
142
|
-
export declare type ColorPalettePurple = 'colorPalettePurpleBackground1' | 'colorPalettePurpleBackground2' | 'colorPalettePurpleBackground3' | 'colorPalettePurpleForeground1' | 'colorPalettePurpleForeground2' | 'colorPalettePurpleForeground3' | 'colorPalettePurpleBorderActive' | 'colorPalettePurpleBorder2';
|
143
|
-
export declare type ColorPaletteDarkPurple = 'colorPaletteDarkPurpleBackground1' | 'colorPaletteDarkPurpleBackground2' | 'colorPaletteDarkPurpleBackground3' | 'colorPaletteDarkPurpleForeground1' | 'colorPaletteDarkPurpleForeground2' | 'colorPaletteDarkPurpleForeground3' | 'colorPaletteDarkPurpleBorderActive' | 'colorPaletteDarkPurpleBorder2';
|
144
|
-
export declare type ColorPaletteOrchid = 'colorPaletteOrchidBackground1' | 'colorPaletteOrchidBackground2' | 'colorPaletteOrchidBackground3' | 'colorPaletteOrchidForeground1' | 'colorPaletteOrchidForeground2' | 'colorPaletteOrchidForeground3' | 'colorPaletteOrchidBorderActive' | 'colorPaletteOrchidBorder2';
|
145
|
-
export declare type ColorPaletteGrape = 'colorPaletteGrapeBackground1' | 'colorPaletteGrapeBackground2' | 'colorPaletteGrapeBackground3' | 'colorPaletteGrapeForeground1' | 'colorPaletteGrapeForeground2' | 'colorPaletteGrapeForeground3' | 'colorPaletteGrapeBorderActive' | 'colorPaletteGrapeBorder2';
|
146
|
-
export declare type ColorPaletteBerry = 'colorPaletteBerryBackground1' | 'colorPaletteBerryBackground2' | 'colorPaletteBerryBackground3' | 'colorPaletteBerryForeground1' | 'colorPaletteBerryForeground2' | 'colorPaletteBerryForeground3' | 'colorPaletteBerryBorderActive' | 'colorPaletteBerryBorder2';
|
147
|
-
export declare type ColorPaletteLilac = 'colorPaletteLilacBackground1' | 'colorPaletteLilacBackground2' | 'colorPaletteLilacBackground3' | 'colorPaletteLilacForeground1' | 'colorPaletteLilacForeground2' | 'colorPaletteLilacForeground3' | 'colorPaletteLilacBorderActive' | 'colorPaletteLilacBorder2';
|
148
|
-
export declare type ColorPalettePink = 'colorPalettePinkBackground1' | 'colorPalettePinkBackground2' | 'colorPalettePinkBackground3' | 'colorPalettePinkForeground1' | 'colorPalettePinkForeground2' | 'colorPalettePinkForeground3' | 'colorPalettePinkBorderActive' | 'colorPalettePinkBorder2';
|
149
|
-
export declare type ColorPaletteHotPink = 'colorPaletteHotPinkBackground1' | 'colorPaletteHotPinkBackground2' | 'colorPaletteHotPinkBackground3' | 'colorPaletteHotPinkForeground1' | 'colorPaletteHotPinkForeground2' | 'colorPaletteHotPinkForeground3' | 'colorPaletteHotPinkBorderActive' | 'colorPaletteHotPinkBorder2';
|
150
|
-
export declare type ColorPaletteMagenta = 'colorPaletteMagentaBackground1' | 'colorPaletteMagentaBackground2' | 'colorPaletteMagentaBackground3' | 'colorPaletteMagentaForeground1' | 'colorPaletteMagentaForeground2' | 'colorPaletteMagentaForeground3' | 'colorPaletteMagentaBorderActive' | 'colorPaletteMagentaBorder2';
|
151
|
-
export declare type ColorPalettePlum = 'colorPalettePlumBackground1' | 'colorPalettePlumBackground2' | 'colorPalettePlumBackground3' | 'colorPalettePlumForeground1' | 'colorPalettePlumForeground2' | 'colorPalettePlumForeground3' | 'colorPalettePlumBorderActive' | 'colorPalettePlumBorder2';
|
152
|
-
export declare type ColorPaletteBeige = 'colorPaletteBeigeBackground1' | 'colorPaletteBeigeBackground2' | 'colorPaletteBeigeBackground3' | 'colorPaletteBeigeForeground1' | 'colorPaletteBeigeForeground2' | 'colorPaletteBeigeForeground3' | 'colorPaletteBeigeBorderActive' | 'colorPaletteBeigeBorder2';
|
153
|
-
export declare type ColorPaletteMink = 'colorPaletteMinkBackground1' | 'colorPaletteMinkBackground2' | 'colorPaletteMinkBackground3' | 'colorPaletteMinkForeground1' | 'colorPaletteMinkForeground2' | 'colorPaletteMinkForeground3' | 'colorPaletteMinkBorderActive' | 'colorPaletteMinkBorder2';
|
154
|
-
export declare type ColorPaletteSilver = 'colorPaletteSilverBackground1' | 'colorPaletteSilverBackground2' | 'colorPaletteSilverBackground3' | 'colorPaletteSilverForeground1' | 'colorPaletteSilverForeground2' | 'colorPaletteSilverForeground3' | 'colorPaletteSilverBorderActive' | 'colorPaletteSilverBorder2';
|
155
|
-
export declare type ColorPalettePlatinum = 'colorPalettePlatinumBackground1' | 'colorPalettePlatinumBackground2' | 'colorPalettePlatinumBackground3' | 'colorPalettePlatinumForeground1' | 'colorPalettePlatinumForeground2' | 'colorPalettePlatinumForeground3' | 'colorPalettePlatinumBorderActive' | 'colorPalettePlatinumBorder2';
|
156
|
-
export declare type ColorPaletteAnchor = 'colorPaletteAnchorBackground1' | 'colorPaletteAnchorBackground2' | 'colorPaletteAnchorBackground3' | 'colorPaletteAnchorForeground1' | 'colorPaletteAnchorForeground2' | 'colorPaletteAnchorForeground3' | 'colorPaletteAnchorBorderActive' | 'colorPaletteAnchorBorder2';
|
157
|
-
export declare type ColorPaletteCharcoal = 'colorPaletteCharcoalBackground1' | 'colorPaletteCharcoalBackground2' | 'colorPaletteCharcoalBackground3' | 'colorPaletteCharcoalForeground1' | 'colorPaletteCharcoalForeground2' | 'colorPaletteCharcoalForeground3' | 'colorPaletteCharcoalBorderActive' | 'colorPaletteCharcoalBorder2';
|
158
|
-
export declare type ColorPaletteTokens = Record<ColorPaletteDarkRed | ColorPaletteBurgundy | ColorPaletteCranberry | ColorPaletteRed | ColorPaletteDarkOrange | ColorPaletteBronze | ColorPalettePumpkin | ColorPaletteOrange | ColorPalettePeach | ColorPaletteMarigold | ColorPaletteYellow | ColorPaletteGold | ColorPaletteBrass | ColorPaletteBrown | ColorPaletteDarkBrown | ColorPaletteLime | ColorPaletteForest | ColorPaletteSeafoam | ColorPaletteLightGreen | ColorPaletteGreen | ColorPaletteDarkGreen | ColorPaletteLightTeal | ColorPaletteTeal | ColorPaletteDarkTeal | ColorPaletteCyan | ColorPaletteSteel | ColorPaletteLightBlue | ColorPaletteBlue | ColorPaletteRoyalBlue | ColorPaletteDarkBlue | ColorPaletteCornflower | ColorPaletteNavy | ColorPaletteLavender | ColorPalettePurple | ColorPaletteDarkPurple | ColorPaletteOrchid | ColorPaletteGrape | ColorPaletteBerry | ColorPaletteLilac | ColorPalettePink | ColorPaletteHotPink | ColorPaletteMagenta | ColorPalettePlum | ColorPaletteBeige | ColorPaletteMink | ColorPaletteSilver | ColorPalettePlatinum | ColorPaletteAnchor | ColorPaletteCharcoal, string>;
|
159
|
-
/**
|
160
|
-
* Possible color variant values
|
161
|
-
*/
|
162
|
-
export declare type ColorVariants = {
|
163
|
-
shade50: string;
|
164
|
-
shade40: string;
|
165
|
-
shade30: string;
|
166
|
-
shade20: string;
|
167
|
-
shade10: string;
|
168
|
-
primary: string;
|
169
|
-
tint10: string;
|
170
|
-
tint20: string;
|
171
|
-
tint30: string;
|
172
|
-
tint40: string;
|
173
|
-
tint50: string;
|
174
|
-
tint60: string;
|
175
|
-
};
|
176
|
-
export declare type BrandVariants = ColorVariants & {
|
177
|
-
shade60: string;
|
178
|
-
};
|
179
|
-
/**
|
180
|
-
* All the global shared colors and their shade/tint variants
|
181
|
-
*/
|
182
|
-
export declare type GlobalSharedColors = {
|
183
|
-
darkRed: ColorVariants;
|
184
|
-
burgundy: ColorVariants;
|
185
|
-
cranberry: ColorVariants;
|
186
|
-
red: ColorVariants;
|
187
|
-
darkOrange: ColorVariants;
|
188
|
-
bronze: ColorVariants;
|
189
|
-
pumpkin: ColorVariants;
|
190
|
-
orange: ColorVariants;
|
191
|
-
peach: ColorVariants;
|
192
|
-
marigold: ColorVariants;
|
193
|
-
yellow: ColorVariants;
|
194
|
-
gold: ColorVariants;
|
195
|
-
brass: ColorVariants;
|
196
|
-
brown: ColorVariants;
|
197
|
-
darkBrown: ColorVariants;
|
198
|
-
lime: ColorVariants;
|
199
|
-
forest: ColorVariants;
|
200
|
-
seafoam: ColorVariants;
|
201
|
-
lightGreen: ColorVariants;
|
202
|
-
green: ColorVariants;
|
203
|
-
darkGreen: ColorVariants;
|
204
|
-
lightTeal: ColorVariants;
|
205
|
-
teal: ColorVariants;
|
206
|
-
darkTeal: ColorVariants;
|
207
|
-
cyan: ColorVariants;
|
208
|
-
steel: ColorVariants;
|
209
|
-
lightBlue: ColorVariants;
|
210
|
-
blue: ColorVariants;
|
211
|
-
royalBlue: ColorVariants;
|
212
|
-
darkBlue: ColorVariants;
|
213
|
-
cornflower: ColorVariants;
|
214
|
-
navy: ColorVariants;
|
215
|
-
lavender: ColorVariants;
|
216
|
-
purple: ColorVariants;
|
217
|
-
darkPurple: ColorVariants;
|
218
|
-
orchid: ColorVariants;
|
219
|
-
grape: ColorVariants;
|
220
|
-
berry: ColorVariants;
|
221
|
-
lilac: ColorVariants;
|
222
|
-
pink: ColorVariants;
|
223
|
-
hotPink: ColorVariants;
|
224
|
-
magenta: ColorVariants;
|
225
|
-
plum: ColorVariants;
|
226
|
-
beige: ColorVariants;
|
227
|
-
mink: ColorVariants;
|
228
|
-
silver: ColorVariants;
|
229
|
-
platinum: ColorVariants;
|
230
|
-
anchor: ColorVariants;
|
231
|
-
charcoal: ColorVariants;
|
232
|
-
};
|
233
|
-
export declare type FontSizeTokens = {
|
234
|
-
fontSizeBase100: string;
|
235
|
-
fontSizeBase200: string;
|
236
|
-
fontSizeBase300: string;
|
237
|
-
fontSizeBase400: string;
|
238
|
-
fontSizeBase500: string;
|
239
|
-
fontSizeBase600: string;
|
240
|
-
fontSizeHero700: string;
|
241
|
-
fontSizeHero800: string;
|
242
|
-
fontSizeHero900: string;
|
243
|
-
fontSizeHero1000: string;
|
244
|
-
};
|
245
|
-
export declare type LineHeightTokens = {
|
246
|
-
lineHeightBase100: string;
|
247
|
-
lineHeightBase200: string;
|
248
|
-
lineHeightBase300: string;
|
249
|
-
lineHeightBase400: string;
|
250
|
-
lineHeightBase500: string;
|
251
|
-
lineHeightBase600: string;
|
252
|
-
lineHeightHero700: string;
|
253
|
-
lineHeightHero800: string;
|
254
|
-
lineHeightHero900: string;
|
255
|
-
lineHeightHero1000: string;
|
256
|
-
};
|
257
|
-
export declare type FontWeightTokens = {
|
258
|
-
fontWeightRegular: number;
|
259
|
-
fontWeightMedium: number;
|
260
|
-
fontWeightSemibold: number;
|
261
|
-
};
|
262
|
-
export declare type FontFamilyTokens = {
|
263
|
-
fontFamilyBase: string;
|
264
|
-
fontFamilyMonospace: string;
|
265
|
-
fontFamilyNumeric: string;
|
266
|
-
};
|
267
|
-
export declare type TextAlignment = 'inherit' | 'initial' | 'revert' | 'unset' | 'center' | 'end' | 'start' | 'justify' | 'left' | 'match-parent' | 'right';
|
268
|
-
export declare type TextAlignments = {
|
269
|
-
start: TextAlignment;
|
270
|
-
center: TextAlignment;
|
271
|
-
end: TextAlignment;
|
272
|
-
justify: TextAlignment;
|
273
|
-
};
|
274
|
-
export declare type BorderRadiusTokens = {
|
275
|
-
borderRadiusNone: string;
|
276
|
-
borderRadiusSmall: string;
|
277
|
-
borderRadiusMedium: string;
|
278
|
-
borderRadiusLarge: string;
|
279
|
-
borderRadiusXLarge: string;
|
280
|
-
borderRadiusCircular: string;
|
281
|
-
};
|
282
|
-
export declare type StrokeWidthTokens = {
|
283
|
-
strokeWidthThin: string;
|
284
|
-
strokeWidthThick: string;
|
285
|
-
strokeWidthThicker: string;
|
286
|
-
strokeWidthThickest: string;
|
287
|
-
};
|
288
|
-
/**
|
289
|
-
* Design tokens for shadow levels
|
290
|
-
*/
|
291
|
-
export declare type ShadowTokens = {
|
292
|
-
shadow2: string;
|
293
|
-
shadow4: string;
|
294
|
-
shadow8: string;
|
295
|
-
shadow16: string;
|
296
|
-
shadow28: string;
|
297
|
-
shadow64: string;
|
298
|
-
};
|
299
|
-
export declare type GhostColorTokens = {
|
300
|
-
ghostBackground: string;
|
301
|
-
ghostBackgroundHover: string;
|
302
|
-
ghostBackgroundPressed: string;
|
303
|
-
ghostBackgroundSelected: string;
|
304
|
-
};
|
305
|
-
export declare type TransparentColorTokens = {
|
306
|
-
transparentBackground: string;
|
307
|
-
transparentBackgroundHover: string;
|
308
|
-
transparentBackgroundPressed: string;
|
309
|
-
transparentBackgroundSelected: string;
|
310
|
-
};
|
311
|
-
export declare type BackgroundColorTokens = {
|
312
|
-
background: string;
|
313
|
-
backgroundHover: string;
|
314
|
-
backgroundPressed: string;
|
315
|
-
backgroundSelected: string;
|
316
|
-
};
|
317
|
-
export declare type BrandColorTokens = {
|
318
|
-
brandBackground: string;
|
319
|
-
brandBackgroundHover: string;
|
320
|
-
brandBackgroundPressed: string;
|
321
|
-
brandBackgroundSelected: string;
|
322
|
-
brandBackgroundStatic: string;
|
323
|
-
};
|
324
|
-
export declare type Greys = 0 | 2 | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 18 | 20 | 22 | 24 | 26 | 28 | 30 | 32 | 34 | 36 | 38 | 40 | 42 | 44 | 46 | 48 | 50 | 52 | 54 | 56 | 58 | 60 | 62 | 64 | 66 | 68 | 70 | 72 | 74 | 76 | 78 | 80 | 82 | 84 | 86 | 88 | 90 | 92 | 94 | 96 | 98 | 100;
|
325
|
-
export declare type AlphaColors = 5 | 10 | 20 | 30 | 40 | 50 | 60 | 70 | 80 | 90;
|
326
|
-
export declare type Theme = FontSizeTokens & LineHeightTokens & BorderRadiusTokens & StrokeWidthTokens & ShadowTokens & FontFamilyTokens & FontWeightTokens & ColorPaletteTokens & ColorTokens;
|
327
|
-
export declare type PartialTheme = Partial<Theme>;
|
package/lib/utils/index.d.ts
DELETED
package/lib/utils/mergeThemes.js
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
import { __assign } from "tslib";
|
2
|
-
export function mergeThemes(a, b) {
|
3
|
-
// Merge impacts perf: we should like to avoid it if it's possible
|
4
|
-
if (a && b) {
|
5
|
-
return __assign(__assign({}, a), b);
|
6
|
-
}
|
7
|
-
|
8
|
-
if (a) {
|
9
|
-
return a;
|
10
|
-
}
|
11
|
-
|
12
|
-
return b;
|
13
|
-
}
|
14
|
-
//# sourceMappingURL=mergeThemes.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"sources":["../../src/utils/mergeThemes.ts"],"names":[],"mappings":";AAEA,OAAM,SAAU,WAAV,CAAsB,CAAtB,EAA4C,CAA5C,EAA+E;AACnF;AACA,MAAI,CAAC,IAAI,CAAT,EAAY;AACV,WAAA,QAAA,CAAA,QAAA,CAAA,EAAA,EAAY,CAAZ,CAAA,EAAkB,CAAlB,CAAA;AACD;;AAED,MAAI,CAAJ,EAAO;AACL,WAAO,CAAP;AACD;;AAED,SAAO,CAAP;AACD","sourceRoot":""}
|
package/lib/utils/shadows.d.ts
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
export function themeToCSSVariables(theme) {
|
2
|
-
var result = {};
|
3
|
-
|
4
|
-
for (var propertyName in theme) {
|
5
|
-
if (Object.prototype.hasOwnProperty.call(theme, propertyName)) {
|
6
|
-
result["--" + propertyName] = theme[propertyName];
|
7
|
-
}
|
8
|
-
}
|
9
|
-
|
10
|
-
return result;
|
11
|
-
}
|
12
|
-
//# sourceMappingURL=themeToCSSVariables.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"sources":["../../src/utils/themeToCSSVariables.ts"],"names":[],"mappings":"AAEA,OAAM,SAAU,mBAAV,CAA8B,KAA9B,EAA0C;AAC9C,MAAM,MAAM,GAA2C,EAAvD;;AAEA,OAAK,IAAM,YAAX,IAA2B,KAA3B,EAAkC;AAChC,QAAI,MAAM,CAAC,SAAP,CAAiB,cAAjB,CAAgC,IAAhC,CAAqC,KAArC,EAA4C,YAA5C,CAAJ,EAA+D;AAC7D,MAAA,MAAM,CAAC,OAAK,YAAN,CAAN,GAA8B,KAAK,CAAC,YAAD,CAAnC;AACD;AACF;;AAED,SAAO,MAAP;AACD","sourceRoot":""}
|
@@ -1,128 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.colorPaletteTokens = exports.generateColorTokens = void 0;
|
7
|
-
|
8
|
-
var tslib_1 = /*#__PURE__*/require("tslib");
|
9
|
-
|
10
|
-
var colors_1 = /*#__PURE__*/require("../global/colors");
|
11
|
-
|
12
|
-
var generateColorTokens = function (brand) {
|
13
|
-
return {
|
14
|
-
colorNeutralForeground1: colors_1.white,
|
15
|
-
colorNeutralForeground2: colors_1.grey[84],
|
16
|
-
colorNeutralForeground2Hover: colors_1.white,
|
17
|
-
colorNeutralForeground2Pressed: colors_1.white,
|
18
|
-
colorNeutralForeground2Selected: colors_1.white,
|
19
|
-
colorNeutralForeground2BrandHover: brand.tint20,
|
20
|
-
colorNeutralForeground2BrandPressed: brand.tint10,
|
21
|
-
colorNeutralForeground2BrandSelected: brand.tint20,
|
22
|
-
colorNeutralForeground3: colors_1.grey[68],
|
23
|
-
colorNeutralForeground3Hover: colors_1.grey[84],
|
24
|
-
colorNeutralForeground3Pressed: colors_1.grey[84],
|
25
|
-
colorNeutralForeground3Selected: colors_1.grey[84],
|
26
|
-
colorNeutralForeground3BrandHover: brand.tint20,
|
27
|
-
colorNeutralForeground3BrandPressed: brand.tint10,
|
28
|
-
colorNeutralForeground3BrandSelected: brand.tint20,
|
29
|
-
colorNeutralForeground4: colors_1.grey[60],
|
30
|
-
colorNeutralForegroundDisabled: colors_1.grey[36],
|
31
|
-
colorBrandForegroundLink: brand.tint10,
|
32
|
-
colorBrandForegroundLinkHover: brand.tint30,
|
33
|
-
colorBrandForegroundLinkPressed: brand.tint20,
|
34
|
-
colorBrandForegroundLinkSelected: brand.tint10,
|
35
|
-
colorCompoundBrandForeground1: brand.tint10,
|
36
|
-
colorCompoundBrandForeground1Hover: brand.tint20,
|
37
|
-
colorCompoundBrandForeground1Pressed: brand.primary,
|
38
|
-
colorBrandForeground1: brand.tint20,
|
39
|
-
colorBrandForeground2: brand.tint30,
|
40
|
-
colorNeutralForegroundInverted: colors_1.grey[14],
|
41
|
-
colorNeutralForegroundOnBrand: colors_1.white,
|
42
|
-
colorNeutralForegroundInvertedLink: colors_1.white,
|
43
|
-
colorNeutralForegroundInvertedLinkHover: colors_1.white,
|
44
|
-
colorNeutralForegroundInvertedLinkPressed: colors_1.white,
|
45
|
-
colorNeutralForegroundInvertedLinkSelected: colors_1.white,
|
46
|
-
colorNeutralBackground1: colors_1.grey[16],
|
47
|
-
colorNeutralBackground1Hover: colors_1.grey[24],
|
48
|
-
colorNeutralBackground1Pressed: colors_1.grey[12],
|
49
|
-
colorNeutralBackground1Selected: colors_1.grey[22],
|
50
|
-
colorNeutralBackground2: colors_1.grey[12],
|
51
|
-
colorNeutralBackground2Hover: colors_1.grey[20],
|
52
|
-
colorNeutralBackground2Pressed: colors_1.grey[8],
|
53
|
-
colorNeutralBackground2Selected: colors_1.grey[18],
|
54
|
-
colorNeutralBackground3: colors_1.grey[8],
|
55
|
-
colorNeutralBackground3Hover: colors_1.grey[16],
|
56
|
-
colorNeutralBackground3Pressed: colors_1.grey[4],
|
57
|
-
colorNeutralBackground3Selected: colors_1.grey[14],
|
58
|
-
colorNeutralBackground4: colors_1.grey[4],
|
59
|
-
colorNeutralBackground4Hover: colors_1.grey[12],
|
60
|
-
colorNeutralBackground4Pressed: colors_1.black,
|
61
|
-
colorNeutralBackground4Selected: colors_1.grey[10],
|
62
|
-
colorNeutralBackground5: colors_1.black,
|
63
|
-
colorNeutralBackground5Hover: colors_1.grey[8],
|
64
|
-
colorNeutralBackground5Pressed: colors_1.grey[2],
|
65
|
-
colorNeutralBackground5Selected: colors_1.grey[6],
|
66
|
-
colorNeutralBackground6: colors_1.grey[20],
|
67
|
-
colorNeutralBackgroundInverted: colors_1.white,
|
68
|
-
colorSubtleBackground: 'transparent',
|
69
|
-
colorSubtleBackgroundHover: colors_1.grey[22],
|
70
|
-
colorSubtleBackgroundPressed: colors_1.grey[18],
|
71
|
-
colorSubtleBackgroundSelected: colors_1.grey[20],
|
72
|
-
colorTransparentBackground: 'transparent',
|
73
|
-
colorTransparentBackgroundHover: 'transparent',
|
74
|
-
colorTransparentBackgroundPressed: 'transparent',
|
75
|
-
colorTransparentBackgroundSelected: 'transparent',
|
76
|
-
colorNeutralBackgroundDisabled: colors_1.grey[8],
|
77
|
-
colorNeutralStencil1: colors_1.grey[20],
|
78
|
-
colorNeutralStencil2: colors_1.grey[34],
|
79
|
-
colorBrandBackground: brand.shade10,
|
80
|
-
colorBrandBackgroundHover: brand.primary,
|
81
|
-
colorBrandBackgroundPressed: brand.shade40,
|
82
|
-
colorBrandBackgroundSelected: brand.shade20,
|
83
|
-
colorCompoundBrandBackground: brand.tint10,
|
84
|
-
colorCompoundBrandBackgroundHover: brand.tint20,
|
85
|
-
colorCompoundBrandBackgroundPressed: brand.primary,
|
86
|
-
colorBrandBackgroundStatic: brand.primary,
|
87
|
-
colorBrandBackground2: brand.shade40,
|
88
|
-
colorNeutralStrokeAccessible: colors_1.grey[68],
|
89
|
-
colorNeutralStrokeAccessibleHover: colors_1.grey[74],
|
90
|
-
colorNeutralStrokeAccessiblePressed: colors_1.grey[70],
|
91
|
-
colorNeutralStrokeAccessibleSelected: brand.tint20,
|
92
|
-
colorNeutralStroke1: colors_1.grey[40],
|
93
|
-
colorNeutralStroke1Hover: colors_1.grey[46],
|
94
|
-
colorNeutralStroke1Pressed: colors_1.grey[42],
|
95
|
-
colorNeutralStroke1Selected: colors_1.grey[44],
|
96
|
-
colorNeutralStroke2: colors_1.grey[32],
|
97
|
-
colorNeutralStroke3: colors_1.grey[24],
|
98
|
-
colorBrandStroke1: brand.tint10,
|
99
|
-
colorBrandStroke2: brand.shade30,
|
100
|
-
colorCompoundBrandStroke: brand.tint10,
|
101
|
-
colorCompoundBrandStrokeHover: brand.tint20,
|
102
|
-
colorCompoundBrandStrokePressed: brand.primary,
|
103
|
-
colorNeutralStrokeDisabled: colors_1.grey[26],
|
104
|
-
colorTransparentStroke: 'transparent',
|
105
|
-
colorTransparentStrokeInteractive: 'transparent',
|
106
|
-
colorTransparentStrokeDisabled: 'transparent',
|
107
|
-
colorStrokeFocus1: colors_1.black,
|
108
|
-
colorStrokeFocus2: colors_1.white,
|
109
|
-
colorNeutralShadowAmbient: 'rgba(0,0,0,0.24)',
|
110
|
-
colorNeutralShadowKey: 'rgba(0,0,0,0.28)',
|
111
|
-
colorNeutralShadowAmbientLighter: 'rgba(0,0,0,0.12)',
|
112
|
-
colorNeutralShadowKeyLighter: 'rgba(0,0,0,0.14)',
|
113
|
-
colorNeutralShadowAmbientDarker: 'rgba(0,0,0,0.40)',
|
114
|
-
colorNeutralShadowKeyDarker: 'rgba(0,0,0,0.48)',
|
115
|
-
colorBrandShadowAmbient: 'rgba(0,0,0,0.30)',
|
116
|
-
colorBrandShadowKey: 'rgba(0,0,0,0.25)'
|
117
|
-
};
|
118
|
-
};
|
119
|
-
|
120
|
-
exports.generateColorTokens = generateColorTokens;
|
121
|
-
exports.colorPaletteTokens = /*#__PURE__*/Object.keys(colors_1.sharedColors).reduce(function (acc, sharedColor) {
|
122
|
-
var _a;
|
123
|
-
|
124
|
-
var color = sharedColor.slice(0, 1).toUpperCase() + sharedColor.slice(1);
|
125
|
-
var sharedColorTokens = (_a = {}, _a["colorPalette" + color + "Background1"] = colors_1.sharedColors[sharedColor].shade40, _a["colorPalette" + color + "Background2"] = colors_1.sharedColors[sharedColor].shade30, _a["colorPalette" + color + "Background3"] = colors_1.sharedColors[sharedColor].primary, _a["colorPalette" + color + "Foreground1"] = colors_1.sharedColors[sharedColor].tint30, _a["colorPalette" + color + "Foreground2"] = colors_1.sharedColors[sharedColor].tint40, _a["colorPalette" + color + "Foreground3"] = colors_1.sharedColors[sharedColor].tint20, _a["colorPalette" + color + "BorderActive"] = colors_1.sharedColors[sharedColor].tint30, _a["colorPalette" + color + "Border2"] = colors_1.sharedColors[sharedColor].tint20, _a);
|
126
|
-
return tslib_1.__assign(tslib_1.__assign({}, acc), sharedColorTokens);
|
127
|
-
}, {});
|
128
|
-
//# sourceMappingURL=dark.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"sources":["../../src/alias/dark.ts"],"names":[],"mappings":"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","sourceRoot":""}
|