@aurodesignsystem/design-tokens 4.4.0 → 4.5.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.
Files changed (47) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +26 -23
  3. package/dist/tokens/CSSCustomProperties.css +1541 -64
  4. package/dist/tokens/CSSSizeCustomProperties.css +1 -1
  5. package/dist/tokens/JSData--color.js +16496 -2089
  6. package/dist/tokens/JSONVariablesFlat.json +470 -33
  7. package/dist/tokens/JSONVariablesNested.json +733 -48
  8. package/dist/tokens/JSObject--allTokens.js +13602 -2331
  9. package/dist/tokens/JSObject--deprecated.js +2266 -1897
  10. package/dist/tokens/JSVariables--color.js +736 -39
  11. package/dist/tokens/SCSSVariableMap.scss +1 -1
  12. package/dist/tokens/SCSSVariables.scss +1003 -46
  13. package/dist/tokens/SCSSVariablesMapFlat.scss +1006 -47
  14. package/dist/tokens/SassCustomProperties.scss +1541 -64
  15. package/dist/tokens/SassSizeCustomProperties.scss +1 -1
  16. package/dist/tokens/darkmode/CSSCustomProperties.css +4 -4
  17. package/dist/tokens/darkmode/JSDataColor.js +94 -30
  18. package/dist/tokens/darkmode/{JSObject--allDarkTokens.js → JSObject--deprecatedDark.js} +107 -43
  19. package/dist/tokens/darkmode/JSVariablesColor.js +4 -4
  20. package/dist/tokens/darkmode/SCSSVariables.scss +4 -4
  21. package/dist/tokens/darkmode/SCSSVariablesMapFlat.scss +4 -4
  22. package/dist/tokens/darkmode/SassCustomProperties.scss +4 -4
  23. package/dist/tokens/excursion/JSONVariablesFlat.json +67 -0
  24. package/dist/tokens/excursion/JSONVariablesNested.json +105 -0
  25. package/package.json +5 -5
  26. package/src/color/alert.json +18 -103
  27. package/src/color/background.json +213 -10
  28. package/src/color/base.json +1219 -70
  29. package/src/color/border.json +253 -133
  30. package/src/color/brand.json +1204 -185
  31. package/src/color/container.json +464 -0
  32. package/src/color/icon.json +449 -91
  33. package/src/color/text.json +200 -145
  34. package/src/color/tier.json +118 -52
  35. package/src/color/ui.json +29 -115
  36. package/src/color-darkmode/base.json +6 -2
  37. package/src/color-darkmode/border.json +6 -2
  38. package/src/color-darkmode/icon.json +6 -2
  39. package/src/color-darkmode/text.json +15 -5
  40. package/src/color-darkmode/tier.json +6 -2
  41. package/src/depth.json +0 -7
  42. package/src/size/scale.json +0 -80
  43. package/src/themes/excursion/color/background.json +73 -0
  44. package/src/themes/excursion/color/base.json +234 -0
  45. package/src/themes/excursion/color/brand.json +254 -0
  46. package/src/breakpoint.json +0 -28
  47. package/src/shadow.json +0 -13
@@ -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.base.gray.500.value}",
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": "AAA",
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.base.neutral.500.value}",
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": "AAA",
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.base.neutral.400.value}",
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": "AAA",
36
+ "wcag": "n/a",
81
37
  "deprecated": false
82
38
  }
83
39
  },
84
- "link": {
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.atlas.400.value}",
42
+ "value": "{color.brand.neutral.700.value}",
98
43
  "public": true,
99
44
  "default": true,
100
- "usage": "Link text color on light backgrounds",
101
- "wcag": "AA",
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.breeze.300.value}",
50
+ "value": "{color.brand.gray.800.value}",
116
51
  "public": true,
117
52
  "inverse": true,
118
- "usage": "Link text color on light backgrounds",
119
- "wcag": "AA",
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.state.error.500.value}",
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": "AA",
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.state.error.100.value}",
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": "AA",
72
+ "wcag": "n/a",
160
73
  "deprecated": false
161
74
  }
162
75
  },
163
76
  "disabled": {
164
- "onLight": {
77
+ "default": {
165
78
  "value": "{color.base.gray.200.value}",
166
- "public": false,
79
+ "public": true,
167
80
  "onLight": true,
168
81
  "usage": "Disabled text color on light backgrounds",
169
82
  "wcag": "n/a",
170
- "deprecated": true,
171
- "comment": "Deprecated token",
172
- "reference": "color-text-disabled",
173
- "version": "3.15.0"
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.base.gray.200.value}",
106
+ "value": "{color.brand.lime.700.value}",
177
107
  "public": true,
178
- "onLight": true,
179
- "usage": "Disabled text color on light backgrounds",
108
+ "default": true,
109
+ "usage": "Accent text color on light backgrounds",
180
110
  "wcag": "n/a",
181
111
  "deprecated": false
182
112
  },
183
- "onDark": {
184
- "value": "{color.base.gray.200.value}",
185
- "public": false,
186
- "onDark": true,
187
- "usage": "Disabled text color on dark backgrounds",
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": true,
190
- "comment": "Deprecated token",
191
- "reference": "n/a",
192
- "version": "3.12.0"
119
+ "deprecated": false
193
120
  }
194
121
  },
195
- "emphasis": {
196
- "onLight": {
197
- "value": "{color.brand.midnight.400.value}",
198
- "public": false,
199
- "onLight": true,
200
- "usage": "Emphasized text color on light backgrounds",
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": true,
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.midnight.400.value}",
142
+ "value": "{color.brand.cyan.700.value}",
209
143
  "public": true,
210
144
  "default": true,
211
- "usage": "Emphasized text color on light backgrounds",
145
+ "usage": "Subtle text color on light backgrounds",
212
146
  "wcag": "n/a",
213
147
  "deprecated": false
214
148
  },
215
- "onDark": {
216
- "value": "{color.brand.midnight.100.value}",
217
- "public": false,
218
- "onDark": true,
219
- "usage": "Emphasized text color on dark backgrounds",
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": true,
222
- "comment": "Deprecated token",
223
- "reference": "color-text-emphasis-inverse",
224
- "version": "3.15.0"
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.brand.midnight.100.value}",
168
+ "value": "{color.base.success.400.value}",
228
169
  "public": true,
229
170
  "inverse": true,
230
- "usage": "Emphasized text color on dark backgrounds",
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
  }
@@ -3,81 +3,147 @@
3
3
  "tier": {
4
4
  "alaska": {
5
5
  "mvp": {
6
- "onLight": {
7
- "value": "{color.brand.goldgray.200.value}",
8
- "public": false,
9
- "onLight": true,
10
- "usage": "MVP tier color for Alaska Airlines",
11
- "wcag": "n/a",
12
- "deprecated": true,
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": "{color.brand.goldgray.200.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
- "onDark": {
26
- "value": "{color.brand.goldgray.100.value}",
27
- "public": false,
28
- "onDark": true,
29
- "usage": "MVP tier color for Alaska Airlines",
30
- "wcag": "n/a",
31
- "deprecated": true,
32
- "comment": "Deprecated token",
33
- "reference": "color-tier-alaska-mvp-inverse",
34
- "version": "3.15.0"
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": "{color.brand.goldgray.100.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
- "mvpgold": {
46
- "onLight": {
47
- "value": "{color.brand.gold.200.value}",
48
- "public": false,
49
- "onLight": true,
50
- "usage": "MVP Gold tier color for Alaska Airlines",
51
- "wcag": "n/a",
52
- "deprecated": true,
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": "{color.brand.gold.200.value}",
81
+ "value": "#005154",
59
82
  "public": true,
60
83
  "default": true,
61
- "usage": "MVP Gold tier color for Alaska Airlines",
84
+ "usage": "Business class tier color for fares on light backgrounds",
62
85
  "wcag": "n/a",
63
86
  "deprecated": false
64
87
  },
65
- "onDark": {
66
- "value": "{color.brand.gold.100.value}",
67
- "public": false,
68
- "onDark": true,
69
- "usage": "MVP Gold tier color for Alaska Airlines",
70
- "wcag": "n/a",
71
- "deprecated": true,
72
- "comment": "Deprecated token",
73
- "reference": "color-tier-alaska-mvpgold-inverse",
74
- "version": "3.15.0"
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.gold.100.value}",
143
+ "value": "{color.brand.cyan.200.value}",
78
144
  "public": true,
79
145
  "inverse": true,
80
- "usage": "MVP Gold tier color for Alaska Airlines",
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": "{color.brand.emerald.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": "{color.brand.sapphire.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": "{color.brand.ruby.value}",
170
+ "value": "#015daa",
105
171
  "public": true,
106
172
  "onDark": true,
107
173
  "usage": "Ruby tier color for Oneworld",