@aurodesignsystem/design-tokens 4.4.0 → 4.6.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 +28 -0
- package/README.md +30 -23
- package/dist/tokens/CSSCustomProperties.css +1541 -64
- package/dist/tokens/CSSSizeCustomProperties.css +1 -1
- package/dist/tokens/JSData--color.js +16463 -2038
- package/dist/tokens/JSONVariablesFlat.json +470 -33
- package/dist/tokens/JSONVariablesNested.json +735 -48
- package/dist/tokens/JSObject--allTokens.js +13406 -2117
- package/dist/tokens/JSObject--deprecated.js +2266 -1897
- package/dist/tokens/JSVariables--color.js +736 -39
- package/dist/tokens/SCSSVariableMap.scss +1 -1
- package/dist/tokens/SCSSVariables.scss +1003 -46
- package/dist/tokens/SCSSVariablesMapFlat.scss +1006 -47
- package/dist/tokens/SassCustomProperties.scss +1541 -64
- package/dist/tokens/SassSizeCustomProperties.scss +1 -1
- package/dist/tokens/darkmode/CSSCustomProperties.css +4 -4
- package/dist/tokens/darkmode/JSDataColor.js +94 -30
- package/dist/tokens/darkmode/{JSObject--allDarkTokens.js → JSObject--deprecatedDark.js} +107 -43
- package/dist/tokens/darkmode/JSVariablesColor.js +4 -4
- package/dist/tokens/darkmode/SCSSVariables.scss +4 -4
- package/dist/tokens/darkmode/SCSSVariablesMapFlat.scss +4 -4
- package/dist/tokens/darkmode/SassCustomProperties.scss +4 -4
- package/dist/tokens/excursion/JSONVariablesFlat.json +736 -0
- package/dist/tokens/excursion/JSONVariablesNested.json +1222 -0
- package/package.json +5 -5
- package/src/color/alert.json +18 -103
- package/src/color/background.json +215 -10
- package/src/color/base.json +1219 -70
- package/src/color/border.json +253 -133
- package/src/color/brand.json +1204 -185
- package/src/color/container.json +464 -0
- package/src/color/icon.json +449 -91
- package/src/color/text.json +200 -145
- package/src/color/tier.json +118 -52
- package/src/color/ui.json +29 -115
- package/src/color-darkmode/base.json +6 -2
- package/src/color-darkmode/border.json +6 -2
- package/src/color-darkmode/icon.json +6 -2
- package/src/color-darkmode/text.json +15 -5
- package/src/color-darkmode/tier.json +6 -2
- package/src/depth.json +0 -7
- package/src/size/scale.json +0 -80
- package/src/themes/excursion/animation.json +21 -0
- package/src/themes/excursion/asset/font.json +35 -0
- package/src/themes/excursion/color/alert.json +90 -0
- package/src/themes/excursion/color/background.json +280 -0
- package/src/themes/excursion/color/base.json +1303 -0
- package/src/themes/excursion/color/border.json +288 -0
- package/src/themes/excursion/color/brand.json +1549 -0
- package/src/themes/excursion/color/container.json +464 -0
- package/src/themes/excursion/color/excursion.json +254 -0
- package/src/themes/excursion/color/icon.json +476 -0
- package/src/themes/excursion/color/text.json +270 -0
- package/src/themes/excursion/color/tier.json +180 -0
- package/src/themes/excursion/color/ui.json +125 -0
- package/src/themes/excursion/comments.json +34 -0
- package/src/themes/excursion/depth copy.json +22 -0
- package/src/themes/excursion/elevation.json +22 -0
- package/src/themes/excursion/grid-breakpoint.json +29 -0
- package/src/themes/excursion/grid-column.json +29 -0
- package/src/themes/excursion/grid-gutter.json +29 -0
- package/src/themes/excursion/grid-margin.json +29 -0
- package/src/themes/excursion/size/radius.json +9 -0
- package/src/themes/excursion/size/scale.json +234 -0
- package/src/themes/excursion/size/unitless-scale.json +82 -0
- package/src/themes/excursion/text.json +572 -0
- package/src/breakpoint.json +0 -28
- package/src/shadow.json +0 -13
package/src/color/text.json
CHANGED
|
@@ -2,36 +2,14 @@
|
|
|
2
2
|
"color": {
|
|
3
3
|
"text": {
|
|
4
4
|
"primary": {
|
|
5
|
-
"onLight": {
|
|
6
|
-
"value": "{color.base.gray.500.value}",
|
|
7
|
-
"public": false,
|
|
8
|
-
"onLight": true,
|
|
9
|
-
"usage": "Primary color for body and header text on light backgrounds",
|
|
10
|
-
"wcag": "AAA",
|
|
11
|
-
"deprecated": true,
|
|
12
|
-
"comment": "Deprecated token",
|
|
13
|
-
"reference": "color-text-primary-default",
|
|
14
|
-
"version": "3.15.0"
|
|
15
|
-
},
|
|
16
5
|
"default": {
|
|
17
|
-
"value": "{color.
|
|
6
|
+
"value": "{color.brand.gray.1000.value}",
|
|
18
7
|
"public": true,
|
|
19
8
|
"default": true,
|
|
20
9
|
"usage": "Primary color for body and header text light mode and light backgrounds",
|
|
21
|
-
"wcag": "
|
|
10
|
+
"wcag": "n/a",
|
|
22
11
|
"deprecated": false
|
|
23
12
|
},
|
|
24
|
-
"onDark": {
|
|
25
|
-
"value": "{color.base.white.value}",
|
|
26
|
-
"public": false,
|
|
27
|
-
"onDark": true,
|
|
28
|
-
"usage": "Primary color for body and header text on dark backgrounds",
|
|
29
|
-
"wcag": "AAA",
|
|
30
|
-
"deprecated": true,
|
|
31
|
-
"comment": "Deprecated token",
|
|
32
|
-
"reference": "color-text-primary-inverse",
|
|
33
|
-
"version": "3.15.0"
|
|
34
|
-
},
|
|
35
13
|
"inverse": {
|
|
36
14
|
"value": "{color.base.white.value}",
|
|
37
15
|
"public": true,
|
|
@@ -42,195 +20,272 @@
|
|
|
42
20
|
}
|
|
43
21
|
},
|
|
44
22
|
"secondary": {
|
|
45
|
-
"onLight": {
|
|
46
|
-
"value": "{color.base.neutral.500.value}",
|
|
47
|
-
"public": false,
|
|
48
|
-
"onLight": true,
|
|
49
|
-
"usage": "Secondary color for body text on light backgrounds",
|
|
50
|
-
"wcag": "AAA",
|
|
51
|
-
"deprecated": true,
|
|
52
|
-
"comment": "Deprecated token",
|
|
53
|
-
"reference": "color-text-secondary-default",
|
|
54
|
-
"version": "3.15.0"
|
|
55
|
-
},
|
|
56
23
|
"default": {
|
|
57
|
-
"value": "{color.
|
|
24
|
+
"value": "{color.brand.gray.800.value}",
|
|
58
25
|
"public": true,
|
|
59
26
|
"default": true,
|
|
60
27
|
"usage": "Secondary color for body text on light backgrounds",
|
|
61
|
-
"wcag": "
|
|
28
|
+
"wcag": "n/a",
|
|
62
29
|
"deprecated": false
|
|
63
30
|
},
|
|
64
|
-
"onDark": {
|
|
65
|
-
"value": "{color.base.neutral.400.value}",
|
|
66
|
-
"public": false,
|
|
67
|
-
"onDark": true,
|
|
68
|
-
"usage": "Secondary color for body text on dark backgrounds",
|
|
69
|
-
"wcag": "AAA",
|
|
70
|
-
"deprecated": true,
|
|
71
|
-
"comment": "Deprecated token",
|
|
72
|
-
"reference": "color-text-secondary-inverse",
|
|
73
|
-
"version": "3.15.0"
|
|
74
|
-
},
|
|
75
31
|
"inverse": {
|
|
76
|
-
"value": "{color.
|
|
32
|
+
"value": "{color.brand.gray.200.value}",
|
|
77
33
|
"public": true,
|
|
78
34
|
"inverse": true,
|
|
79
35
|
"usage": "Secondary color for body text on dark backgrounds",
|
|
80
|
-
"wcag": "
|
|
36
|
+
"wcag": "n/a",
|
|
81
37
|
"deprecated": false
|
|
82
38
|
}
|
|
83
39
|
},
|
|
84
|
-
"
|
|
85
|
-
"onLight": {
|
|
86
|
-
"value": "{color.brand.atlas.400.value}",
|
|
87
|
-
"public": false,
|
|
88
|
-
"onLight": true,
|
|
89
|
-
"usage": "Link text color on light backgrounds",
|
|
90
|
-
"wcag": "AA",
|
|
91
|
-
"deprecated": true,
|
|
92
|
-
"comment": "Deprecated token",
|
|
93
|
-
"reference": "color-text-link-default",
|
|
94
|
-
"version": "3.15.0"
|
|
95
|
-
},
|
|
40
|
+
"tertiary": {
|
|
96
41
|
"default": {
|
|
97
|
-
"value": "{color.brand.
|
|
42
|
+
"value": "{color.brand.neutral.700.value}",
|
|
98
43
|
"public": true,
|
|
99
44
|
"default": true,
|
|
100
|
-
"usage": "
|
|
101
|
-
"wcag": "
|
|
45
|
+
"usage": "Tertiary color for body text on light backgrounds",
|
|
46
|
+
"wcag": "n/a",
|
|
102
47
|
"deprecated": false
|
|
103
48
|
},
|
|
104
|
-
"onDark": {
|
|
105
|
-
"value": "{color.brand.breeze.300.value}",
|
|
106
|
-
"public": false,
|
|
107
|
-
"onDark": true,
|
|
108
|
-
"usage": "Link text color on light backgrounds",
|
|
109
|
-
"wcag": "AA",
|
|
110
|
-
"deprecated": true,
|
|
111
|
-
"reference": "color-text-link-inverse",
|
|
112
|
-
"version": "3.15.0"
|
|
113
|
-
},
|
|
114
49
|
"inverse": {
|
|
115
|
-
"value": "{color.brand.
|
|
50
|
+
"value": "{color.brand.gray.800.value}",
|
|
116
51
|
"public": true,
|
|
117
52
|
"inverse": true,
|
|
118
|
-
"usage": "
|
|
119
|
-
"wcag": "
|
|
53
|
+
"usage": "Tertiary color for body text on dark backgrounds",
|
|
54
|
+
"wcag": "n/a",
|
|
120
55
|
"deprecated": false
|
|
121
56
|
}
|
|
122
57
|
},
|
|
123
58
|
"error": {
|
|
124
|
-
"onLight": {
|
|
125
|
-
"value": "{color.state.error.500.value}",
|
|
126
|
-
"public": false,
|
|
127
|
-
"onLight": true,
|
|
128
|
-
"usage": "Error text color on light backgrounds",
|
|
129
|
-
"wcag": "AA",
|
|
130
|
-
"deprecated": true,
|
|
131
|
-
"comment": "Deprecated token",
|
|
132
|
-
"reference": "color-text-error-default",
|
|
133
|
-
"version": "3.15.0"
|
|
134
|
-
},
|
|
135
59
|
"default": {
|
|
136
|
-
"value": "{color.
|
|
60
|
+
"value": "{color.base.error.400.value}",
|
|
137
61
|
"public": true,
|
|
138
62
|
"default": true,
|
|
139
63
|
"usage": "Error text color on light backgrounds",
|
|
140
|
-
"wcag": "
|
|
64
|
+
"wcag": "n/a",
|
|
141
65
|
"deprecated": false
|
|
142
66
|
},
|
|
143
|
-
"onDark": {
|
|
144
|
-
"value": "{color.state.error.100.value}",
|
|
145
|
-
"public": false,
|
|
146
|
-
"onDark": true,
|
|
147
|
-
"usage": "Error text color on dark backgrounds",
|
|
148
|
-
"wcag": "AA",
|
|
149
|
-
"deprecated": true,
|
|
150
|
-
"comment": "Deprecated token",
|
|
151
|
-
"reference": "color-text-error-inverse",
|
|
152
|
-
"version": "3.15.0"
|
|
153
|
-
},
|
|
154
67
|
"inverse": {
|
|
155
|
-
"value": "{color.
|
|
68
|
+
"value": "{color.base.error.200.value}",
|
|
156
69
|
"public": true,
|
|
157
70
|
"inverse": true,
|
|
158
71
|
"usage": "Error text color on dark backgrounds",
|
|
159
|
-
"wcag": "
|
|
72
|
+
"wcag": "n/a",
|
|
160
73
|
"deprecated": false
|
|
161
74
|
}
|
|
162
75
|
},
|
|
163
76
|
"disabled": {
|
|
164
|
-
"
|
|
77
|
+
"default": {
|
|
165
78
|
"value": "{color.base.gray.200.value}",
|
|
166
|
-
"public":
|
|
79
|
+
"public": true,
|
|
167
80
|
"onLight": true,
|
|
168
81
|
"usage": "Disabled text color on light backgrounds",
|
|
169
82
|
"wcag": "n/a",
|
|
170
|
-
"deprecated":
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
83
|
+
"deprecated": false
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"emphasis": {
|
|
87
|
+
"default": {
|
|
88
|
+
"value": "{color.brand.navy.800.value}",
|
|
89
|
+
"public": true,
|
|
90
|
+
"default": true,
|
|
91
|
+
"usage": "Emphasized text color on light backgrounds",
|
|
92
|
+
"wcag": "n/a",
|
|
93
|
+
"deprecated": false
|
|
174
94
|
},
|
|
95
|
+
"inverse": {
|
|
96
|
+
"value": "{color.brand.navy.200.value}",
|
|
97
|
+
"public": true,
|
|
98
|
+
"inverse": true,
|
|
99
|
+
"usage": "Emphasized text color on dark backgrounds",
|
|
100
|
+
"wcag": "n/a",
|
|
101
|
+
"deprecated": false
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"accent": {
|
|
175
105
|
"default": {
|
|
176
|
-
"value": "{color.
|
|
106
|
+
"value": "{color.brand.lime.700.value}",
|
|
177
107
|
"public": true,
|
|
178
|
-
"
|
|
179
|
-
"usage": "
|
|
108
|
+
"default": true,
|
|
109
|
+
"usage": "Accent text color on light backgrounds",
|
|
180
110
|
"wcag": "n/a",
|
|
181
111
|
"deprecated": false
|
|
182
112
|
},
|
|
183
|
-
"
|
|
184
|
-
"value": "{color.
|
|
185
|
-
"public":
|
|
186
|
-
"
|
|
187
|
-
"usage": "
|
|
113
|
+
"inverse": {
|
|
114
|
+
"value": "{color.brand.lime.300.value}",
|
|
115
|
+
"public": true,
|
|
116
|
+
"inverse": true,
|
|
117
|
+
"usage": "Accent text color on dark backgrounds",
|
|
188
118
|
"wcag": "n/a",
|
|
189
|
-
"deprecated":
|
|
190
|
-
"comment": "Deprecated token",
|
|
191
|
-
"reference": "n/a",
|
|
192
|
-
"version": "3.12.0"
|
|
119
|
+
"deprecated": false
|
|
193
120
|
}
|
|
194
121
|
},
|
|
195
|
-
"
|
|
196
|
-
"
|
|
197
|
-
"value": "{color.brand.
|
|
198
|
-
"public":
|
|
199
|
-
"
|
|
200
|
-
"usage": "
|
|
122
|
+
"info": {
|
|
123
|
+
"default": {
|
|
124
|
+
"value": "{color.brand.navy.700.value}",
|
|
125
|
+
"public": true,
|
|
126
|
+
"default": true,
|
|
127
|
+
"usage": "Info text color on light backgrounds",
|
|
201
128
|
"wcag": "n/a",
|
|
202
|
-
"deprecated":
|
|
203
|
-
"comment": "Deprecated token",
|
|
204
|
-
"reference": "color-text-emphasis-default",
|
|
205
|
-
"version": "3.15.0"
|
|
129
|
+
"deprecated": false
|
|
206
130
|
},
|
|
131
|
+
"inverse": {
|
|
132
|
+
"value": "{color.brand.navy.300.value}",
|
|
133
|
+
"public": true,
|
|
134
|
+
"inverse": true,
|
|
135
|
+
"usage": "Info text color on dark backgrounds",
|
|
136
|
+
"wcag": "n/a",
|
|
137
|
+
"deprecated": false
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"subtle": {
|
|
207
141
|
"default": {
|
|
208
|
-
"value": "{color.brand.
|
|
142
|
+
"value": "{color.brand.cyan.700.value}",
|
|
209
143
|
"public": true,
|
|
210
144
|
"default": true,
|
|
211
|
-
"usage": "
|
|
145
|
+
"usage": "Subtle text color on light backgrounds",
|
|
212
146
|
"wcag": "n/a",
|
|
213
147
|
"deprecated": false
|
|
214
148
|
},
|
|
215
|
-
"
|
|
216
|
-
"value": "{color.brand.
|
|
217
|
-
"public":
|
|
218
|
-
"
|
|
219
|
-
"usage": "
|
|
149
|
+
"inverse": {
|
|
150
|
+
"value": "{color.brand.cyan.400.value}",
|
|
151
|
+
"public": true,
|
|
152
|
+
"inverse": true,
|
|
153
|
+
"usage": "Subtle text color on dark backgrounds",
|
|
220
154
|
"wcag": "n/a",
|
|
221
|
-
"deprecated":
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
155
|
+
"deprecated": false
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
"success": {
|
|
159
|
+
"default": {
|
|
160
|
+
"value": "{color.base.success.400.value}",
|
|
161
|
+
"public": true,
|
|
162
|
+
"default": true,
|
|
163
|
+
"usage": "Success text color on light backgrounds",
|
|
164
|
+
"wcag": "n/a",
|
|
165
|
+
"deprecated": false
|
|
225
166
|
},
|
|
226
167
|
"inverse": {
|
|
227
|
-
"value": "{color.
|
|
168
|
+
"value": "{color.base.success.400.value}",
|
|
228
169
|
"public": true,
|
|
229
170
|
"inverse": true,
|
|
230
|
-
"usage": "
|
|
171
|
+
"usage": "Success text color on dark backgrounds",
|
|
231
172
|
"wcag": "n/a",
|
|
232
173
|
"deprecated": false
|
|
233
174
|
}
|
|
175
|
+
},
|
|
176
|
+
"ui": {
|
|
177
|
+
"active": {
|
|
178
|
+
"default": {
|
|
179
|
+
"value": "{color.brand.blue.800.value}",
|
|
180
|
+
"public": true,
|
|
181
|
+
"default": true,
|
|
182
|
+
"usage": "Active UI text color on light backgrounds",
|
|
183
|
+
"wcag": "n/a",
|
|
184
|
+
"deprecated": false
|
|
185
|
+
},
|
|
186
|
+
"inverse": {
|
|
187
|
+
"value": "{color.brand.cyan.300.value}",
|
|
188
|
+
"public": true,
|
|
189
|
+
"inverse": true,
|
|
190
|
+
"usage": "Active UI text color on dark backgrounds",
|
|
191
|
+
"wcag": "n/a",
|
|
192
|
+
"deprecated": false
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
"default": {
|
|
196
|
+
"default": {
|
|
197
|
+
"value": "{color.brand.blue.700.value}",
|
|
198
|
+
"public": true,
|
|
199
|
+
"default": true,
|
|
200
|
+
"usage": "Default UI text color on light backgrounds",
|
|
201
|
+
"wcag": "n/a",
|
|
202
|
+
"deprecated": false
|
|
203
|
+
},
|
|
204
|
+
"inverse": {
|
|
205
|
+
"value": "{color.brand.cyan.400.value}",
|
|
206
|
+
"public": true,
|
|
207
|
+
"inverse": true,
|
|
208
|
+
"usage": "Default UI text color on dark backgrounds",
|
|
209
|
+
"wcag": "n/a",
|
|
210
|
+
"deprecated": false
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
"disabled": {
|
|
214
|
+
"default": {
|
|
215
|
+
"value": "{color.base.gray.400.value}",
|
|
216
|
+
"public": true,
|
|
217
|
+
"default": true,
|
|
218
|
+
"usage": "Disabled UI text color on light backgrounds",
|
|
219
|
+
"wcag": "n/a",
|
|
220
|
+
"deprecated": false
|
|
221
|
+
},
|
|
222
|
+
"inverse": {
|
|
223
|
+
"value": "{color.base.gray.600.value}",
|
|
224
|
+
"public": true,
|
|
225
|
+
"inverse": true,
|
|
226
|
+
"usage": "Disabled UI text color on dark backgrounds",
|
|
227
|
+
"wcag": "n/a",
|
|
228
|
+
"deprecated": false
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"focus": {
|
|
232
|
+
"default": {
|
|
233
|
+
"value": "{color.brand.blue.700.value}",
|
|
234
|
+
"public": true,
|
|
235
|
+
"default": true,
|
|
236
|
+
"usage": "Focus UI text color on light backgrounds",
|
|
237
|
+
"wcag": "n/a",
|
|
238
|
+
"deprecated": false
|
|
239
|
+
},
|
|
240
|
+
"inverse": {
|
|
241
|
+
"value": "{color.brand.cyan.400.value}",
|
|
242
|
+
"public": true,
|
|
243
|
+
"inverse": true,
|
|
244
|
+
"usage": "Focus UI text color on dark backgrounds",
|
|
245
|
+
"wcag": "n/a",
|
|
246
|
+
"deprecated": false
|
|
247
|
+
}
|
|
248
|
+
},
|
|
249
|
+
"hover": {
|
|
250
|
+
"default": {
|
|
251
|
+
"value": "{color.brand.blue.900.value}",
|
|
252
|
+
"public": true,
|
|
253
|
+
"default": true,
|
|
254
|
+
"usage": "Hover UI text color on light backgrounds",
|
|
255
|
+
"wcag": "n/a",
|
|
256
|
+
"deprecated": false
|
|
257
|
+
},
|
|
258
|
+
"inverse": {
|
|
259
|
+
"value": "{color.brand.cyan.200.value}",
|
|
260
|
+
"public": true,
|
|
261
|
+
"inverse": true,
|
|
262
|
+
"usage": "Hover UI text color on dark backgrounds",
|
|
263
|
+
"wcag": "n/a",
|
|
264
|
+
"deprecated": false
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
"link": {
|
|
269
|
+
"default": {
|
|
270
|
+
"value": "{color.brand.atlas.400.value}",
|
|
271
|
+
"public": true,
|
|
272
|
+
"default": true,
|
|
273
|
+
"usage": "Link text color on light backgrounds",
|
|
274
|
+
"wcag": "AA",
|
|
275
|
+
"deprecated": true,
|
|
276
|
+
"version": "4.5.0",
|
|
277
|
+
"reference": "n/a"
|
|
278
|
+
},
|
|
279
|
+
"inverse": {
|
|
280
|
+
"value": "{color.brand.breeze.300.value}",
|
|
281
|
+
"public": true,
|
|
282
|
+
"inverse": true,
|
|
283
|
+
"usage": "Link text color on light backgrounds",
|
|
284
|
+
"wcag": "AA",
|
|
285
|
+
"deprecated": true,
|
|
286
|
+
"version": "4.5.0",
|
|
287
|
+
"reference": "n/a"
|
|
288
|
+
}
|
|
234
289
|
}
|
|
235
290
|
}
|
|
236
291
|
}
|
package/src/color/tier.json
CHANGED
|
@@ -3,81 +3,147 @@
|
|
|
3
3
|
"tier": {
|
|
4
4
|
"alaska": {
|
|
5
5
|
"mvp": {
|
|
6
|
-
"
|
|
7
|
-
"value": "
|
|
8
|
-
"public":
|
|
9
|
-
"
|
|
10
|
-
"usage": "MVP tier color for Alaska Airlines",
|
|
11
|
-
"wcag": "n/a",
|
|
12
|
-
"deprecated":
|
|
13
|
-
"comment": "Deprecated token",
|
|
14
|
-
"reference": "color-tier-alaska-mvp-default",
|
|
15
|
-
"version": "3.15.0"
|
|
6
|
+
"default": {
|
|
7
|
+
"value": "#726e6c",
|
|
8
|
+
"public": true,
|
|
9
|
+
"default": true,
|
|
10
|
+
"usage": "MVP tier color for Alaska Airlines on light backgrounds",
|
|
11
|
+
"wcag": "n/a",
|
|
12
|
+
"deprecated": false
|
|
16
13
|
},
|
|
14
|
+
"inverse": {
|
|
15
|
+
"value": "#c5c1bf",
|
|
16
|
+
"public": true,
|
|
17
|
+
"inverse": true,
|
|
18
|
+
"usage": "MVP tier color for Alaska Airlines on dark backgrounds",
|
|
19
|
+
"wcag": "n/a",
|
|
20
|
+
"deprecated": false
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"mvpgold": {
|
|
17
24
|
"default": {
|
|
18
|
-
"value": "
|
|
25
|
+
"value": "#7f682e",
|
|
19
26
|
"public": true,
|
|
20
27
|
"default": true,
|
|
21
|
-
"usage": "MVP tier color for Alaska Airlines",
|
|
28
|
+
"usage": "MVP Gold tier color for Alaska Airlines on light backgrounds",
|
|
22
29
|
"wcag": "n/a",
|
|
23
30
|
"deprecated": false
|
|
24
31
|
},
|
|
25
|
-
"
|
|
26
|
-
"value": "
|
|
27
|
-
"public":
|
|
28
|
-
"
|
|
29
|
-
"usage": "MVP tier color for Alaska Airlines",
|
|
30
|
-
"wcag": "n/a",
|
|
31
|
-
"deprecated":
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
"inverse": {
|
|
33
|
+
"value": "#c5c1bf",
|
|
34
|
+
"public": true,
|
|
35
|
+
"inverse": true,
|
|
36
|
+
"usage": "MVP Gold tier color for Alaska Airlines on dark backgrounds",
|
|
37
|
+
"wcag": "n/a",
|
|
38
|
+
"deprecated": false
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"mvpgold75k" :{
|
|
42
|
+
"default": {
|
|
43
|
+
"value": "#7f682e",
|
|
44
|
+
"public": true,
|
|
45
|
+
"default": true,
|
|
46
|
+
"usage": "MVP Gold 75k tier color for Alaska Airlines on light backgrounds",
|
|
47
|
+
"wcag": "n/a",
|
|
48
|
+
"deprecated": false
|
|
35
49
|
},
|
|
36
50
|
"inverse": {
|
|
37
|
-
"value": "
|
|
51
|
+
"value": "#c5c1bf",
|
|
38
52
|
"public": true,
|
|
39
53
|
"inverse": true,
|
|
40
|
-
"usage": "MVP tier color for Alaska Airlines",
|
|
54
|
+
"usage": "MVP Gold 75k tier color for Alaska Airlines on dark backgrounds",
|
|
41
55
|
"wcag": "n/a",
|
|
42
56
|
"deprecated": false
|
|
43
57
|
}
|
|
44
58
|
},
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"value": "
|
|
48
|
-
"public":
|
|
49
|
-
"
|
|
50
|
-
"usage": "MVP Gold tier color for Alaska Airlines",
|
|
51
|
-
"wcag": "n/a",
|
|
52
|
-
"deprecated":
|
|
53
|
-
"comment": "Deprecated token",
|
|
54
|
-
"reference": "color-tier-alaska-mvpgold-default",
|
|
55
|
-
"version": "3.15.0"
|
|
59
|
+
"mvpgold100k": {
|
|
60
|
+
"default": {
|
|
61
|
+
"value": "#7f682e",
|
|
62
|
+
"public": true,
|
|
63
|
+
"default": true,
|
|
64
|
+
"usage": "MVP Gold 100k tier color for Alaska Airlines on light backgrounds",
|
|
65
|
+
"wcag": "n/a",
|
|
66
|
+
"deprecated": false
|
|
56
67
|
},
|
|
68
|
+
"inverse": {
|
|
69
|
+
"value": "#c5c1bf",
|
|
70
|
+
"public": true,
|
|
71
|
+
"inverse": true,
|
|
72
|
+
"usage": "MVP Gold 100k tier color for Alaska Airlines on dark backgrounds",
|
|
73
|
+
"wcag": "n/a",
|
|
74
|
+
"deprecated": false
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"fare": {
|
|
79
|
+
"business": {
|
|
57
80
|
"default": {
|
|
58
|
-
"value": "
|
|
81
|
+
"value": "#005154",
|
|
59
82
|
"public": true,
|
|
60
83
|
"default": true,
|
|
61
|
-
"usage": "
|
|
84
|
+
"usage": "Business class tier color for fares on light backgrounds",
|
|
62
85
|
"wcag": "n/a",
|
|
63
86
|
"deprecated": false
|
|
64
87
|
},
|
|
65
|
-
"
|
|
66
|
-
"value": "{color.brand.
|
|
67
|
-
"public":
|
|
68
|
-
"
|
|
69
|
-
"usage": "
|
|
70
|
-
"wcag": "n/a",
|
|
71
|
-
"deprecated":
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
88
|
+
"inverse": {
|
|
89
|
+
"value": "{color.brand.turquoise.400.value}",
|
|
90
|
+
"public": true,
|
|
91
|
+
"inverse": true,
|
|
92
|
+
"usage": "Business class tier color for fares on dark backgrounds",
|
|
93
|
+
"wcag": "n/a",
|
|
94
|
+
"deprecated": false
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"economy": {
|
|
98
|
+
"default": {
|
|
99
|
+
"value": "{color.brand.blue.700.value}",
|
|
100
|
+
"public": true,
|
|
101
|
+
"default": true,
|
|
102
|
+
"usage": "Economy class tier color for fares on light backgrounds",
|
|
103
|
+
"wcag": "n/a",
|
|
104
|
+
"deprecated": false
|
|
105
|
+
},
|
|
106
|
+
"inverse": {
|
|
107
|
+
"value": "{color.brand.blue.300.value}",
|
|
108
|
+
"public": true,
|
|
109
|
+
"inverse": true,
|
|
110
|
+
"usage": "Economy class tier color for fares on dark backgrounds",
|
|
111
|
+
"wcag": "n/a",
|
|
112
|
+
"deprecated": false
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"first-class": {
|
|
116
|
+
"default": {
|
|
117
|
+
"value": "#002c4e",
|
|
118
|
+
"public": true,
|
|
119
|
+
"default": true,
|
|
120
|
+
"usage": "First class tier color for fares on light backgrounds",
|
|
121
|
+
"wcag": "n/a",
|
|
122
|
+
"deprecated": false
|
|
123
|
+
},
|
|
124
|
+
"inverse": {
|
|
125
|
+
"value": "#f7f7f7",
|
|
126
|
+
"public": true,
|
|
127
|
+
"inverse": true,
|
|
128
|
+
"usage": "First class tier color for fares on dark backgrounds",
|
|
129
|
+
"wcag": "n/a",
|
|
130
|
+
"deprecated": false
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
"saver": {
|
|
134
|
+
"default": {
|
|
135
|
+
"value": "{color.brand.cyan.500.value}",
|
|
136
|
+
"public": true,
|
|
137
|
+
"default": true,
|
|
138
|
+
"usage": "Saver class tier color for fares on light backgrounds",
|
|
139
|
+
"wcag": "n/a",
|
|
140
|
+
"deprecated": false
|
|
75
141
|
},
|
|
76
142
|
"inverse": {
|
|
77
|
-
"value": "{color.brand.
|
|
143
|
+
"value": "{color.brand.cyan.200.value}",
|
|
78
144
|
"public": true,
|
|
79
145
|
"inverse": true,
|
|
80
|
-
"usage": "
|
|
146
|
+
"usage": "Saver class tier color for fares on dark backgrounds",
|
|
81
147
|
"wcag": "n/a",
|
|
82
148
|
"deprecated": false
|
|
83
149
|
}
|
|
@@ -85,7 +151,7 @@
|
|
|
85
151
|
},
|
|
86
152
|
"oneworld": {
|
|
87
153
|
"emerald": {
|
|
88
|
-
"value": "
|
|
154
|
+
"value": "#139142",
|
|
89
155
|
"public": true,
|
|
90
156
|
"onLight": true,
|
|
91
157
|
"usage": "Emerald tier color for Oneworld",
|
|
@@ -93,7 +159,7 @@
|
|
|
93
159
|
"deprecated": false
|
|
94
160
|
},
|
|
95
161
|
"sapphire": {
|
|
96
|
-
"value": "
|
|
162
|
+
"value": "#a41d4a",
|
|
97
163
|
"public": true,
|
|
98
164
|
"onDark": true,
|
|
99
165
|
"usage": "Sapphire tier color for Oneworld",
|
|
@@ -101,7 +167,7 @@
|
|
|
101
167
|
"deprecated": false
|
|
102
168
|
},
|
|
103
169
|
"ruby": {
|
|
104
|
-
"value": "
|
|
170
|
+
"value": "#015daa",
|
|
105
171
|
"public": true,
|
|
106
172
|
"onDark": true,
|
|
107
173
|
"usage": "Ruby tier color for Oneworld",
|