@aurodesignsystem/design-tokens 4.0.0
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.md +573 -0
- package/LICENSE +201 -0
- package/README.md +97 -0
- package/dist/tokens/CSSCustomProperties--darkmode.css +302 -0
- package/dist/tokens/CSSCustomProperties.css +315 -0
- package/dist/tokens/CSSCustomPropertiesColorRGB--darkmode.css +155 -0
- package/dist/tokens/CSSCustomPropertiesColorRGB.css +168 -0
- package/dist/tokens/CSSOpacityProperties--darkmode.scss +10 -0
- package/dist/tokens/CSSOpacityProperties.scss +10 -0
- package/dist/tokens/CSSSizeCustomProperties--darkmode.css +20 -0
- package/dist/tokens/CSSSizeCustomProperties.css +20 -0
- package/dist/tokens/CSSVariables--darkmode.css +302 -0
- package/dist/tokens/CSSVariablesMapFlat--darkmode.css +368 -0
- package/dist/tokens/JSData--color.js +3665 -0
- package/dist/tokens/JSData--darkmodeColor.js +3254 -0
- package/dist/tokens/JSObject--allDarkTokens.js +7087 -0
- package/dist/tokens/JSObject--allTokens.js +7498 -0
- package/dist/tokens/JSObject--deprecated.js +2788 -0
- package/dist/tokens/JSObject--deprecatedDark.js +675 -0
- package/dist/tokens/JSVariables--color.js +166 -0
- package/dist/tokens/JSVariables--darkmodeColor.js +153 -0
- package/dist/tokens/SCSSOpacityVariables--darkmode.scss +7 -0
- package/dist/tokens/SCSSOpacityVariables.scss +7 -0
- package/dist/tokens/SCSSVariableMap--darkmode.scss +37 -0
- package/dist/tokens/SCSSVariableMap.scss +37 -0
- package/dist/tokens/SCSSVariables--darkmode.scss +299 -0
- package/dist/tokens/SCSSVariables.scss +312 -0
- package/dist/tokens/SCSSVariablesMapFlat--darkmode.scss +368 -0
- package/dist/tokens/SCSSVariablesMapFlat.scss +381 -0
- package/dist/tokens/SassCustomProperties--darkmode.scss +302 -0
- package/dist/tokens/SassCustomProperties.scss +315 -0
- package/dist/tokens/SassCustomPropertiesColorRGB--darkmode.scss +155 -0
- package/dist/tokens/SassCustomPropertiesColorRGB.scss +168 -0
- package/dist/tokens/SassSizeCustomProperties--darkmode.scss +20 -0
- package/dist/tokens/SassSizeCustomProperties.scss +20 -0
- package/package.json +92 -0
- package/packageScripts/postinstall.mjs +34 -0
- package/src/animation.json +21 -0
- package/src/asset/font.json +35 -0
- package/src/breakpoint.json +28 -0
- package/src/color/alert.json +175 -0
- package/src/color/background.json +38 -0
- package/src/color/base.json +140 -0
- package/src/color/border.json +214 -0
- package/src/color/brand.json +530 -0
- package/src/color/icon.json +150 -0
- package/src/color/text.json +237 -0
- package/src/color/tier.json +114 -0
- package/src/color/ui.json +165 -0
- package/src/color-darkmode/alert.json +56 -0
- package/src/color-darkmode/background.json +38 -0
- package/src/color-darkmode/base.json +140 -0
- package/src/color-darkmode/border.json +66 -0
- package/src/color-darkmode/brand.json +530 -0
- package/src/color-darkmode/icon.json +46 -0
- package/src/color-darkmode/text.json +66 -0
- package/src/color-darkmode/tier.json +54 -0
- package/src/color-darkmode/ui.json +57 -0
- package/src/comments.json +34 -0
- package/src/depth.json +29 -0
- package/src/elevation.json +22 -0
- package/src/grid-breakpoint.json +29 -0
- package/src/grid-column.json +29 -0
- package/src/grid-gutter.json +29 -0
- package/src/grid-margin.json +29 -0
- package/src/shadow.json +13 -0
- package/src/size/radius.json +9 -0
- package/src/size/scale.json +308 -0
- package/src/size/unitless-scale.json +82 -0
- package/src/text.json +572 -0
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly
|
|
3
|
+
* Generated on Wed, 13 Sep 2023 17:26:39 GMT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
export const DsColorAlertNotificationDefault = "#0074c8";
|
|
7
|
+
export const DsColorAlertWarningDefault = "#de750c";
|
|
8
|
+
export const DsColorAlertErrorDefault = "#df0b37";
|
|
9
|
+
export const DsColorAlertSuccessDefault = "#00805d";
|
|
10
|
+
export const DsColorAlertAdvisoryDefault = "#fff0cd";
|
|
11
|
+
export const DsColorAlertBkgSuccessDefault = "#ddf6e8";
|
|
12
|
+
export const DsColorAlertBkgErrorDefault = "#ffedf1";
|
|
13
|
+
export const DsColorBackgroundLightest = "#ffffff";
|
|
14
|
+
export const DsColorBackgroundLighter = "#f8f8f8";
|
|
15
|
+
export const DsColorBackgroundDarker = "#01426a";
|
|
16
|
+
export const DsColorBackgroundDarkest = "#00274a";
|
|
17
|
+
export const DsColorBaseWhite = "#ffffff"; //
|
|
18
|
+
// Base value for token support; should not use in code!
|
|
19
|
+
export const DsColorBaseWhiteOpacity40 = "#ffffff"; // white @ 40%
|
|
20
|
+
export const DsColorBaseBlack = "#000000"; //
|
|
21
|
+
// Base value for token support; should not use in code!
|
|
22
|
+
export const DsColorBaseBlackOpacity15 = "#000000"; // black @ 15%
|
|
23
|
+
export const DsColorStateError100 = "#ff999b";
|
|
24
|
+
export const DsColorStateError500 = "#df0b37";
|
|
25
|
+
export const DsColorStateSuccess100 = "#69cf96";
|
|
26
|
+
export const DsColorStateSuccess500 = "#00805d";
|
|
27
|
+
export const DsColorStateWarning500 = "#de750c";
|
|
28
|
+
export const DsColorBorderPrimaryDefault = "#626b79";
|
|
29
|
+
export const DsColorBorderPrimaryInverse = "#9fabbb";
|
|
30
|
+
export const DsColorBorderActiveDefault = "#0074c8";
|
|
31
|
+
export const DsColorBorderErrorDefault = "#df0b37";
|
|
32
|
+
export const DsColorBorderDisabledDefault = "#dbdbdb";
|
|
33
|
+
export const DsColorBorderFocusDefault = "#222222";
|
|
34
|
+
export const DsColorBorderDividerDefault = "#000000";
|
|
35
|
+
export const DsColorBorderDividerInverse = "#ffffff";
|
|
36
|
+
export const DsColorBrandMidnight100 = "#c1daf0"; //
|
|
37
|
+
// Please consider descriptive token prior to using brand token
|
|
38
|
+
export const DsColorBrandMidnight200 = "#569ed7"; //
|
|
39
|
+
// Please consider descriptive token prior to using brand token
|
|
40
|
+
export const DsColorBrandMidnight300 = "#156fad"; //
|
|
41
|
+
// Please consider descriptive token prior to using brand token
|
|
42
|
+
export const DsColorBrandMidnight400 = "#01426a"; //
|
|
43
|
+
// Please consider descriptive token prior to using brand token
|
|
44
|
+
export const DsColorBrandMidnight500 = "#00274a"; //
|
|
45
|
+
// Please consider descriptive token prior to using brand token
|
|
46
|
+
export const DsColorBrandAtlas100 = "#cde6ff"; //
|
|
47
|
+
// Please consider descriptive token prior to using brand token
|
|
48
|
+
export const DsColorBrandAtlas200 = "#6bb7fb"; //
|
|
49
|
+
// Please consider descriptive token prior to using brand token
|
|
50
|
+
export const DsColorBrandAtlas300 = "#2492eb"; //
|
|
51
|
+
// Please consider descriptive token prior to using brand token
|
|
52
|
+
export const DsColorBrandAtlas400 = "#0074c8"; //
|
|
53
|
+
// Please consider descriptive token prior to using brand token
|
|
54
|
+
export const DsColorBrandAtlas500 = "#054687"; //
|
|
55
|
+
// Please consider descriptive token prior to using brand token
|
|
56
|
+
export const DsColorBrandBreeze100 = "#c0f7ff"; //
|
|
57
|
+
// Please consider descriptive token prior to using brand token
|
|
58
|
+
export const DsColorBrandBreeze200 = "#5de3f7"; //
|
|
59
|
+
// Please consider descriptive token prior to using brand token
|
|
60
|
+
export const DsColorBrandBreeze300 = "#00cff0"; //
|
|
61
|
+
// Please consider descriptive token prior to using brand token
|
|
62
|
+
export const DsColorBrandBreeze400 = "#099dc5"; //
|
|
63
|
+
// Please consider descriptive token prior to using brand token
|
|
64
|
+
export const DsColorBrandBreeze500 = "#0b5575"; //
|
|
65
|
+
// Please consider descriptive token prior to using brand token
|
|
66
|
+
export const DsColorBrandTropical100 = "#e2ffcd"; //
|
|
67
|
+
// Please consider descriptive token prior to using brand token
|
|
68
|
+
export const DsColorBrandTropical200 = "#d0fba6"; //
|
|
69
|
+
// Please consider descriptive token prior to using brand token
|
|
70
|
+
export const DsColorBrandTropical300 = "#c0e585"; //
|
|
71
|
+
// Please consider descriptive token prior to using brand token
|
|
72
|
+
export const DsColorBrandTropical400 = "#91be62"; //
|
|
73
|
+
// Please consider descriptive token prior to using brand token
|
|
74
|
+
export const DsColorBrandTropical500 = "#5e8741"; //
|
|
75
|
+
// Please consider descriptive token prior to using brand token
|
|
76
|
+
export const DsColorBrandAlpine100 = "#bcaae6"; //
|
|
77
|
+
// Please consider descriptive token prior to using brand token
|
|
78
|
+
export const DsColorBrandAlpine200 = "#9e73ea"; //
|
|
79
|
+
// Please consider descriptive token prior to using brand token
|
|
80
|
+
export const DsColorBrandAlpine300 = "#8439ef"; //
|
|
81
|
+
// Please consider descriptive token prior to using brand token
|
|
82
|
+
export const DsColorBrandAlpine400 = "#631db8"; //
|
|
83
|
+
// Please consider descriptive token prior to using brand token
|
|
84
|
+
export const DsColorBrandAlpine500 = "#39115c"; //
|
|
85
|
+
// Please consider descriptive token prior to using brand token
|
|
86
|
+
export const DsColorBrandFlamingo100 = "#ffebee"; //
|
|
87
|
+
// Please consider descriptive token prior to using brand token
|
|
88
|
+
export const DsColorBrandFlamingo200 = "#ffc0ca"; //
|
|
89
|
+
// Please consider descriptive token prior to using brand token
|
|
90
|
+
export const DsColorBrandFlamingo300 = "#ff94a7"; //
|
|
91
|
+
// Please consider descriptive token prior to using brand token
|
|
92
|
+
export const DsColorBrandFlamingo400 = "#f65b7b"; //
|
|
93
|
+
// Please consider descriptive token prior to using brand token
|
|
94
|
+
export const DsColorBrandFlamingo500 = "#b82b47"; //
|
|
95
|
+
// Please consider descriptive token prior to using brand token
|
|
96
|
+
export const DsColorBrandCanyon100 = "#ffcab6"; //
|
|
97
|
+
// Please consider descriptive token prior to using brand token
|
|
98
|
+
export const DsColorBrandCanyon200 = "#f99574"; //
|
|
99
|
+
// Please consider descriptive token prior to using brand token
|
|
100
|
+
export const DsColorBrandCanyon300 = "#f26135"; //
|
|
101
|
+
// Please consider descriptive token prior to using brand token
|
|
102
|
+
export const DsColorBrandCanyon400 = "#de3e09"; //
|
|
103
|
+
// Please consider descriptive token prior to using brand token
|
|
104
|
+
export const DsColorBrandCanyon500 = "#b83302"; //
|
|
105
|
+
// Please consider descriptive token prior to using brand token
|
|
106
|
+
export const DsColorBrandGoldcoast100 = "#fff0cd"; //
|
|
107
|
+
// Please consider descriptive token prior to using brand token
|
|
108
|
+
export const DsColorBrandGoldcoast200 = "#ffdb67"; //
|
|
109
|
+
// Please consider descriptive token prior to using brand token
|
|
110
|
+
export const DsColorBrandGoldcoast300 = "#ffd200"; //
|
|
111
|
+
// Please consider descriptive token prior to using brand token
|
|
112
|
+
export const DsColorBrandGoldcoast400 = "#e5ad07"; //
|
|
113
|
+
// Please consider descriptive token prior to using brand token
|
|
114
|
+
export const DsColorBrandGoldcoast500 = "#b88624"; //
|
|
115
|
+
// Please consider descriptive token prior to using brand token
|
|
116
|
+
export const DsColorBrandNeutral100 = "#f9fbfc"; //
|
|
117
|
+
// Please consider descriptive token prior to using brand token
|
|
118
|
+
export const DsColorBrandNeutral200 = "#e2eaef"; //
|
|
119
|
+
// Please consider descriptive token prior to using brand token
|
|
120
|
+
export const DsColorBrandNeutral300 = "#cbd8e2"; //
|
|
121
|
+
// Please consider descriptive token prior to using brand token
|
|
122
|
+
export const DsColorBrandNeutral400 = "#9fabbb"; //
|
|
123
|
+
// Please consider descriptive token prior to using brand token
|
|
124
|
+
export const DsColorBrandNeutral500 = "#626b79"; //
|
|
125
|
+
// Please consider descriptive token prior to using brand token
|
|
126
|
+
export const DsColorBrandGray100 = "#f8f8f8";
|
|
127
|
+
export const DsColorBrandGray200 = "#dbdbdb";
|
|
128
|
+
export const DsColorBrandGray300 = "#b2b2b2";
|
|
129
|
+
export const DsColorBrandGray400 = "#767676";
|
|
130
|
+
export const DsColorBrandGray500 = "#222222";
|
|
131
|
+
export const DsColorBrandGoldgray100 = "#c5c1bf";
|
|
132
|
+
export const DsColorBrandGoldgray200 = "#726e6c";
|
|
133
|
+
export const DsColorBrandGold100 = "#ccbc94";
|
|
134
|
+
export const DsColorBrandGold200 = "#7f682e";
|
|
135
|
+
export const DsColorBrandEmerald = "#139142";
|
|
136
|
+
export const DsColorBrandSapphire = "#015daa";
|
|
137
|
+
export const DsColorBrandRuby = "#a41d4a";
|
|
138
|
+
export const DsColorIconPrimaryDefault = "#626b79";
|
|
139
|
+
export const DsColorIconPrimaryInverse = "#9fabbb";
|
|
140
|
+
export const DsColorIconEmphasisDefault = "#222222";
|
|
141
|
+
export const DsColorIconEmphasisInverse = "#ffffff";
|
|
142
|
+
export const DsColorIconAccentDefault = "#0074c8";
|
|
143
|
+
export const DsColorIconDisabledDefault = "#000000";
|
|
144
|
+
export const DsColorTextPrimaryDefault = "#222222";
|
|
145
|
+
export const DsColorTextPrimaryInverse = "#ffffff";
|
|
146
|
+
export const DsColorTextSecondaryDefault = "#626b79";
|
|
147
|
+
export const DsColorTextSecondaryInverse = "#9fabbb";
|
|
148
|
+
export const DsColorTextLinkDefault = "#0074c8";
|
|
149
|
+
export const DsColorTextLinkInverse = "#00cff0";
|
|
150
|
+
export const DsColorTextErrorDefault = "#df0b37";
|
|
151
|
+
export const DsColorTextErrorInverse = "#ff999b";
|
|
152
|
+
export const DsColorTextDisabledDefault = "#dbdbdb";
|
|
153
|
+
export const DsColorTextEmphasisDefault = "#01426a";
|
|
154
|
+
export const DsColorTextEmphasisInverse = "#c1daf0";
|
|
155
|
+
export const DsColorTierAlaskaMvpDefault = "#726e6c";
|
|
156
|
+
export const DsColorTierAlaskaMvpInverse = "#c5c1bf";
|
|
157
|
+
export const DsColorTierAlaskaMvpgoldDefault = "#7f682e";
|
|
158
|
+
export const DsColorTierAlaskaMvpgoldInverse = "#ccbc94";
|
|
159
|
+
export const DsColorTierOneworldEmerald = "#139142";
|
|
160
|
+
export const DsColorTierOneworldSapphire = "#015daa";
|
|
161
|
+
export const DsColorTierOneworldRuby = "#a41d4a";
|
|
162
|
+
export const DsColorUiDefaultDefault = "#0074c8";
|
|
163
|
+
export const DsColorUiHoverDefault = "#054687";
|
|
164
|
+
export const DsColorUiActiveDefault = "#054687";
|
|
165
|
+
export const DsColorUiDisabledDefault = "#0074c8";
|
|
166
|
+
export const DsColorUiBkgHoverDefault = "#000000";
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly
|
|
3
|
+
* Generated on Wed, 13 Sep 2023 17:26:40 GMT
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
export const DsColorAlertNotificationDefault = "#00cff0";
|
|
7
|
+
export const DsColorAlertWarningDefault = "#de750c";
|
|
8
|
+
export const DsColorAlertErrorDefault = "#ff999b";
|
|
9
|
+
export const DsColorAlertSuccessDefault = "#69cf96";
|
|
10
|
+
export const DsColorAlertAdvisoryDefault = "#fff0cd";
|
|
11
|
+
export const DsColorBackgroundLightest = "#ffffff";
|
|
12
|
+
export const DsColorBackgroundLighter = "#f8f8f8";
|
|
13
|
+
export const DsColorBackgroundDarker = "#01426a";
|
|
14
|
+
export const DsColorBackgroundDarkest = "#00274a";
|
|
15
|
+
export const DsColorBaseWhite = "#ffffff"; //
|
|
16
|
+
// Base value for token support; should not use in code!
|
|
17
|
+
export const DsColorBaseWhiteOpacity40 = "#ffffff"; // white @ 40%
|
|
18
|
+
export const DsColorBaseBlack = "#000000"; //
|
|
19
|
+
// Base value for token support; should not use in code!
|
|
20
|
+
export const DsColorBaseBlackOpacity15 = "#000000"; // black @ 15%
|
|
21
|
+
export const DsColorStateError100 = "#ff999b";
|
|
22
|
+
export const DsColorStateError500 = "#df0b37";
|
|
23
|
+
export const DsColorStateSuccess100 = "#69cf96";
|
|
24
|
+
export const DsColorStateSuccess500 = "#00805d";
|
|
25
|
+
export const DsColorStateWarning500 = "#de750c";
|
|
26
|
+
export const DsColorBorderPrimaryDefault = "#9fabbb";
|
|
27
|
+
export const DsColorBorderActiveDefault = "#00cff0";
|
|
28
|
+
export const DsColorBorderErrorDefault = "#ff999b";
|
|
29
|
+
export const DsColorBorderDisabledDefault = "#dbdbdb";
|
|
30
|
+
export const DsColorBorderFocusDefault = "#ffffff";
|
|
31
|
+
export const DsColorBorderDividerDefault = "#ffffff";
|
|
32
|
+
export const DsColorBrandMidnight100 = "#c1daf0"; //
|
|
33
|
+
// Please consider descriptive token prior to using brand token
|
|
34
|
+
export const DsColorBrandMidnight200 = "#569ed7"; //
|
|
35
|
+
// Please consider descriptive token prior to using brand token
|
|
36
|
+
export const DsColorBrandMidnight300 = "#156fad"; //
|
|
37
|
+
// Please consider descriptive token prior to using brand token
|
|
38
|
+
export const DsColorBrandMidnight400 = "#01426a"; //
|
|
39
|
+
// Please consider descriptive token prior to using brand token
|
|
40
|
+
export const DsColorBrandMidnight500 = "#00274a"; //
|
|
41
|
+
// Please consider descriptive token prior to using brand token
|
|
42
|
+
export const DsColorBrandAtlas100 = "#cde6ff"; //
|
|
43
|
+
// Please consider descriptive token prior to using brand token
|
|
44
|
+
export const DsColorBrandAtlas200 = "#6bb7fb"; //
|
|
45
|
+
// Please consider descriptive token prior to using brand token
|
|
46
|
+
export const DsColorBrandAtlas300 = "#2492eb"; //
|
|
47
|
+
// Please consider descriptive token prior to using brand token
|
|
48
|
+
export const DsColorBrandAtlas400 = "#0074c8"; //
|
|
49
|
+
// Please consider descriptive token prior to using brand token
|
|
50
|
+
export const DsColorBrandAtlas500 = "#054687"; //
|
|
51
|
+
// Please consider descriptive token prior to using brand token
|
|
52
|
+
export const DsColorBrandBreeze100 = "#c0f7ff"; //
|
|
53
|
+
// Please consider descriptive token prior to using brand token
|
|
54
|
+
export const DsColorBrandBreeze200 = "#5de3f7"; //
|
|
55
|
+
// Please consider descriptive token prior to using brand token
|
|
56
|
+
export const DsColorBrandBreeze300 = "#00cff0"; //
|
|
57
|
+
// Please consider descriptive token prior to using brand token
|
|
58
|
+
export const DsColorBrandBreeze400 = "#099dc5"; //
|
|
59
|
+
// Please consider descriptive token prior to using brand token
|
|
60
|
+
export const DsColorBrandBreeze500 = "#0b5575"; //
|
|
61
|
+
// Please consider descriptive token prior to using brand token
|
|
62
|
+
export const DsColorBrandTropical100 = "#e2ffcd"; //
|
|
63
|
+
// Please consider descriptive token prior to using brand token
|
|
64
|
+
export const DsColorBrandTropical200 = "#d0fba6"; //
|
|
65
|
+
// Please consider descriptive token prior to using brand token
|
|
66
|
+
export const DsColorBrandTropical300 = "#c0e585"; //
|
|
67
|
+
// Please consider descriptive token prior to using brand token
|
|
68
|
+
export const DsColorBrandTropical400 = "#91be62"; //
|
|
69
|
+
// Please consider descriptive token prior to using brand token
|
|
70
|
+
export const DsColorBrandTropical500 = "#5e8741"; //
|
|
71
|
+
// Please consider descriptive token prior to using brand token
|
|
72
|
+
export const DsColorBrandAlpine100 = "#bcaae6"; //
|
|
73
|
+
// Please consider descriptive token prior to using brand token
|
|
74
|
+
export const DsColorBrandAlpine200 = "#9e73ea"; //
|
|
75
|
+
// Please consider descriptive token prior to using brand token
|
|
76
|
+
export const DsColorBrandAlpine300 = "#8439ef"; //
|
|
77
|
+
// Please consider descriptive token prior to using brand token
|
|
78
|
+
export const DsColorBrandAlpine400 = "#631db8"; //
|
|
79
|
+
// Please consider descriptive token prior to using brand token
|
|
80
|
+
export const DsColorBrandAlpine500 = "#39115c"; //
|
|
81
|
+
// Please consider descriptive token prior to using brand token
|
|
82
|
+
export const DsColorBrandFlamingo100 = "#ffebee"; //
|
|
83
|
+
// Please consider descriptive token prior to using brand token
|
|
84
|
+
export const DsColorBrandFlamingo200 = "#ffc0ca"; //
|
|
85
|
+
// Please consider descriptive token prior to using brand token
|
|
86
|
+
export const DsColorBrandFlamingo300 = "#ff94a7"; //
|
|
87
|
+
// Please consider descriptive token prior to using brand token
|
|
88
|
+
export const DsColorBrandFlamingo400 = "#f65b7b"; //
|
|
89
|
+
// Please consider descriptive token prior to using brand token
|
|
90
|
+
export const DsColorBrandFlamingo500 = "#b82b47"; //
|
|
91
|
+
// Please consider descriptive token prior to using brand token
|
|
92
|
+
export const DsColorBrandCanyon100 = "#ffcab6"; //
|
|
93
|
+
// Please consider descriptive token prior to using brand token
|
|
94
|
+
export const DsColorBrandCanyon200 = "#f99574"; //
|
|
95
|
+
// Please consider descriptive token prior to using brand token
|
|
96
|
+
export const DsColorBrandCanyon300 = "#f26135"; //
|
|
97
|
+
// Please consider descriptive token prior to using brand token
|
|
98
|
+
export const DsColorBrandCanyon400 = "#de3e09"; //
|
|
99
|
+
// Please consider descriptive token prior to using brand token
|
|
100
|
+
export const DsColorBrandCanyon500 = "#b83302"; //
|
|
101
|
+
// Please consider descriptive token prior to using brand token
|
|
102
|
+
export const DsColorBrandGoldcoast100 = "#fff0cd"; //
|
|
103
|
+
// Please consider descriptive token prior to using brand token
|
|
104
|
+
export const DsColorBrandGoldcoast200 = "#ffdb67"; //
|
|
105
|
+
// Please consider descriptive token prior to using brand token
|
|
106
|
+
export const DsColorBrandGoldcoast300 = "#ffd200"; //
|
|
107
|
+
// Please consider descriptive token prior to using brand token
|
|
108
|
+
export const DsColorBrandGoldcoast400 = "#e5ad07"; //
|
|
109
|
+
// Please consider descriptive token prior to using brand token
|
|
110
|
+
export const DsColorBrandGoldcoast500 = "#b88624"; //
|
|
111
|
+
// Please consider descriptive token prior to using brand token
|
|
112
|
+
export const DsColorBrandNeutral100 = "#f9fbfc"; //
|
|
113
|
+
// Please consider descriptive token prior to using brand token
|
|
114
|
+
export const DsColorBrandNeutral200 = "#e2eaef"; //
|
|
115
|
+
// Please consider descriptive token prior to using brand token
|
|
116
|
+
export const DsColorBrandNeutral300 = "#cbd8e2"; //
|
|
117
|
+
// Please consider descriptive token prior to using brand token
|
|
118
|
+
export const DsColorBrandNeutral400 = "#9fabbb"; //
|
|
119
|
+
// Please consider descriptive token prior to using brand token
|
|
120
|
+
export const DsColorBrandNeutral500 = "#626b79"; //
|
|
121
|
+
// Please consider descriptive token prior to using brand token
|
|
122
|
+
export const DsColorBrandGray100 = "#f8f8f8";
|
|
123
|
+
export const DsColorBrandGray200 = "#dbdbdb";
|
|
124
|
+
export const DsColorBrandGray300 = "#b2b2b2";
|
|
125
|
+
export const DsColorBrandGray400 = "#767676";
|
|
126
|
+
export const DsColorBrandGray500 = "#222222";
|
|
127
|
+
export const DsColorBrandGoldgray100 = "#c5c1bf";
|
|
128
|
+
export const DsColorBrandGoldgray200 = "#726e6c";
|
|
129
|
+
export const DsColorBrandGold100 = "#ccbc94";
|
|
130
|
+
export const DsColorBrandGold200 = "#7f682e";
|
|
131
|
+
export const DsColorBrandEmerald = "#139142";
|
|
132
|
+
export const DsColorBrandSapphire = "#015daa";
|
|
133
|
+
export const DsColorBrandRuby = "#a41d4a";
|
|
134
|
+
export const DsColorIconPrimaryDefault = "#9fabbb";
|
|
135
|
+
export const DsColorIconEmphasisDefault = "#ffffff";
|
|
136
|
+
export const DsColorIconAccentDefault = "#00cff0";
|
|
137
|
+
export const DsColorIconDisabledDefault = "#ffffff";
|
|
138
|
+
export const DsColorTextPrimaryDefault = "#ffffff";
|
|
139
|
+
export const DsColorTextSecondaryDefault = "#9fabbb";
|
|
140
|
+
export const DsColorTextLinkDefault = "#00cff0";
|
|
141
|
+
export const DsColorTextErrorDefault = "#ff999b";
|
|
142
|
+
export const DsColorTextDisabledDefault = "#dbdbdb";
|
|
143
|
+
export const DsColorTextEmphasisDefault = "#c1daf0";
|
|
144
|
+
export const DsColorTierAlaskaMvpDefault = "#c5c1bf";
|
|
145
|
+
export const DsColorTierAlaskaMvpgoldDefault = "#ccbc94";
|
|
146
|
+
export const DsColorTierOneworldEmerald = "#139142";
|
|
147
|
+
export const DsColorTierOneworldSapphire = "#015daa";
|
|
148
|
+
export const DsColorTierOneworldRuby = "#a41d4a";
|
|
149
|
+
export const DsColorUiDefaultDefault = "#00cff0";
|
|
150
|
+
export const DsColorUiHoverDefault = "#5de3f7";
|
|
151
|
+
export const DsColorUiActiveDefault = "#5de3f7";
|
|
152
|
+
export const DsColorUiDisabledDefault = "#00cff0";
|
|
153
|
+
export const DsColorUiBkgHoverDefault = "#5de3f7";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
|
|
2
|
+
// Do not edit directly
|
|
3
|
+
// Generated on Wed, 13 Sep 2023 17:26:39 GMT
|
|
4
|
+
|
|
5
|
+
$ds-color-base-white-opacity-40: rgba(255, 255, 255, 0.4); // white @ 40%
|
|
6
|
+
$ds-color-base-black-opacity-15: rgba(0, 0, 0, 0.15); // black @ 15%
|
|
7
|
+
$ds-color-brand-atlas-400-opacity-20: rgba(0, 116, 200, 0.2); // color brand atlas 400 @ 20%
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
|
|
2
|
+
// Do not edit directly
|
|
3
|
+
// Generated on Wed, 13 Sep 2023 17:26:39 GMT
|
|
4
|
+
|
|
5
|
+
$ds-color-base-white-opacity-40: rgba(255, 255, 255, 0.4); // white @ 40%
|
|
6
|
+
$ds-color-base-black-opacity-15: rgba(0, 0, 0, 0.15); // black @ 15%
|
|
7
|
+
$ds-color-brand-atlas-400-opacity-20: rgba(0, 116, 200, 0.2); // color brand atlas 400 @ 20%
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
|
|
2
|
+
/**
|
|
3
|
+
* Do not edit directly
|
|
4
|
+
* Generated on Wed, 13 Sep 2023 17:26:39 GMT
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
$ds-size-25: 0.125rem !default; // 2px
|
|
8
|
+
$ds-size-50: 0.25rem !default; // 4px
|
|
9
|
+
$ds-size-100: 0.5rem !default; // 8px
|
|
10
|
+
$ds-size-150: 0.75rem !default; // 12px
|
|
11
|
+
$ds-size-200: 1rem !default; // 16px
|
|
12
|
+
$ds-size-300: 1.5rem !default; // 24px
|
|
13
|
+
$ds-size-400: 2rem !default; // 32px
|
|
14
|
+
$ds-size-500: 2.5rem !default; // 40px
|
|
15
|
+
$ds-size-600: 3rem !default; // 48px
|
|
16
|
+
$ds-size-700: 3.5rem !default; // 56px
|
|
17
|
+
$ds-size-800: 4rem !default; // 64px
|
|
18
|
+
$ds-size-900: 4.5rem !default; // 72px
|
|
19
|
+
$ds-size-1000: 5rem !default; // 80px
|
|
20
|
+
|
|
21
|
+
$tokens: (
|
|
22
|
+
'size': (
|
|
23
|
+
'25': $ds-size-25,
|
|
24
|
+
'50': $ds-size-50,
|
|
25
|
+
'100': $ds-size-100,
|
|
26
|
+
'150': $ds-size-150,
|
|
27
|
+
'200': $ds-size-200,
|
|
28
|
+
'300': $ds-size-300,
|
|
29
|
+
'400': $ds-size-400,
|
|
30
|
+
'500': $ds-size-500,
|
|
31
|
+
'600': $ds-size-600,
|
|
32
|
+
'700': $ds-size-700,
|
|
33
|
+
'800': $ds-size-800,
|
|
34
|
+
'900': $ds-size-900,
|
|
35
|
+
'1000': $ds-size-1000
|
|
36
|
+
)
|
|
37
|
+
);
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
|
|
2
|
+
/**
|
|
3
|
+
* Do not edit directly
|
|
4
|
+
* Generated on Wed, 13 Sep 2023 17:26:39 GMT
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
$ds-size-25: 0.125rem !default; // 2px
|
|
8
|
+
$ds-size-50: 0.25rem !default; // 4px
|
|
9
|
+
$ds-size-100: 0.5rem !default; // 8px
|
|
10
|
+
$ds-size-150: 0.75rem !default; // 12px
|
|
11
|
+
$ds-size-200: 1rem !default; // 16px
|
|
12
|
+
$ds-size-300: 1.5rem !default; // 24px
|
|
13
|
+
$ds-size-400: 2rem !default; // 32px
|
|
14
|
+
$ds-size-500: 2.5rem !default; // 40px
|
|
15
|
+
$ds-size-600: 3rem !default; // 48px
|
|
16
|
+
$ds-size-700: 3.5rem !default; // 56px
|
|
17
|
+
$ds-size-800: 4rem !default; // 64px
|
|
18
|
+
$ds-size-900: 4.5rem !default; // 72px
|
|
19
|
+
$ds-size-1000: 5rem !default; // 80px
|
|
20
|
+
|
|
21
|
+
$tokens: (
|
|
22
|
+
'size': (
|
|
23
|
+
'25': $ds-size-25,
|
|
24
|
+
'50': $ds-size-50,
|
|
25
|
+
'100': $ds-size-100,
|
|
26
|
+
'150': $ds-size-150,
|
|
27
|
+
'200': $ds-size-200,
|
|
28
|
+
'300': $ds-size-300,
|
|
29
|
+
'400': $ds-size-400,
|
|
30
|
+
'500': $ds-size-500,
|
|
31
|
+
'600': $ds-size-600,
|
|
32
|
+
'700': $ds-size-700,
|
|
33
|
+
'800': $ds-size-800,
|
|
34
|
+
'900': $ds-size-900,
|
|
35
|
+
'1000': $ds-size-1000
|
|
36
|
+
)
|
|
37
|
+
);
|