@aurodesignsystem/design-tokens 4.10.2 → 4.11.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 (39) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/tokens/CSSCustomProperties.css +1 -1
  3. package/dist/tokens/CSSSizeCustomProperties.css +1 -1
  4. package/dist/tokens/JSData--color.js +1 -1
  5. package/dist/tokens/JSObject--allTokens.js +1 -1
  6. package/dist/tokens/JSObject--deprecated.js +1 -1
  7. package/dist/tokens/JSVariables--color.js +1 -1
  8. package/dist/tokens/SCSSVariableMap.scss +1 -1
  9. package/dist/tokens/SCSSVariables.scss +1 -1
  10. package/dist/tokens/SCSSVariablesMapFlat.scss +1 -1
  11. package/dist/tokens/SassCustomProperties.scss +1 -1
  12. package/dist/tokens/SassSizeCustomProperties.scss +1 -1
  13. package/dist/tokens/darkmode/CSSCustomProperties.css +1 -1
  14. package/dist/tokens/darkmode/JSDataColor.js +1 -1
  15. package/dist/tokens/darkmode/JSObject--deprecatedDark.js +1 -1
  16. package/dist/tokens/darkmode/JSVariablesColor.js +1 -1
  17. package/dist/tokens/darkmode/SCSSVariables.scss +1 -1
  18. package/dist/tokens/darkmode/SCSSVariablesMapFlat.scss +1 -1
  19. package/dist/tokens/darkmode/SassCustomProperties.scss +1 -1
  20. package/dist/tokens/hawaiian/CSSCustomProperties.css +20 -0
  21. package/dist/tokens/transparent/CSSCustomProperties.css +615 -0
  22. package/package.json +1 -1
  23. package/src/themes/hawaiian/color/background.json +15 -0
  24. package/src/themes/hawaiian/color/border.json +18 -0
  25. package/src/themes/hawaiian/color/container.json +56 -0
  26. package/src/themes/hawaiian/color/icon.json +24 -0
  27. package/src/themes/hawaiian/color/text.json +44 -0
  28. package/src/themes/transparent/color/alert.json +90 -0
  29. package/src/themes/transparent/color/background.json +263 -0
  30. package/src/themes/transparent/color/base.json +1303 -0
  31. package/src/themes/transparent/color/border.json +341 -0
  32. package/src/themes/transparent/color/brand.json +1561 -0
  33. package/src/themes/transparent/color/container.json +464 -0
  34. package/src/themes/transparent/color/icon.json +602 -0
  35. package/src/themes/transparent/color/text.json +282 -0
  36. package/src/themes/transparent/color/tier.json +194 -0
  37. package/src/themes/transparent/color/ui.json +125 -0
  38. package/src/themes/transparent/color/utility.json +276 -0
  39. package/src/themes/transparent/elevation.json +22 -0
@@ -0,0 +1,276 @@
1
+ {
2
+ "color": {
3
+ "utility": {
4
+ "blue": {
5
+ "default": {
6
+ "value": "{color.brand.blue.400.value}",
7
+ "public": true,
8
+ "default": true,
9
+ "usage": "",
10
+ "wcag": "n/a",
11
+ "deprecated": false
12
+ },
13
+ "inverse": {
14
+ "value": "{color.brand.blue.200.value}",
15
+ "public": true,
16
+ "inverse": true,
17
+ "usage": "",
18
+ "wcag": "n/a",
19
+ "deprecated": false
20
+ }
21
+ },
22
+ "cyan": {
23
+ "default": {
24
+ "value": "{color.brand.cyan.300.value}",
25
+ "public": true,
26
+ "default": true,
27
+ "usage": "",
28
+ "wcag": "n/a",
29
+ "deprecated": false
30
+ },
31
+ "inverse": {
32
+ "value": "{color.brand.cyan.200.value}",
33
+ "public": true,
34
+ "inverse": true,
35
+ "usage": "",
36
+ "wcag": "n/a",
37
+ "deprecated": false
38
+ }
39
+ },
40
+ "green": {
41
+ "default": {
42
+ "value": "{color.brand.green.400.value}",
43
+ "public": true,
44
+ "default": true,
45
+ "usage": "",
46
+ "wcag": "n/a",
47
+ "deprecated": false
48
+ },
49
+ "inverse": {
50
+ "value": "{color.brand.green.300.value}",
51
+ "public": true,
52
+ "inverse": true,
53
+ "usage": "",
54
+ "wcag": "n/a",
55
+ "deprecated": false
56
+ }
57
+ },
58
+ "gray": {
59
+ "default": {
60
+ "value": "{color.brand.gray.400.value}",
61
+ "public": true,
62
+ "default": true,
63
+ "usage": "",
64
+ "wcag": "n/a",
65
+ "deprecated": false
66
+ },
67
+ "inverse": {
68
+ "value": "{color.brand.gray.200.value}",
69
+ "public": true,
70
+ "inverse": true,
71
+ "usage": "",
72
+ "wcag": "n/a",
73
+ "deprecated": false
74
+ }
75
+ },
76
+ "lime": {
77
+ "default": {
78
+ "value": "{color.brand.lime.300.value}",
79
+ "public": true,
80
+ "default": true,
81
+ "usage": "",
82
+ "wcag": "n/a",
83
+ "deprecated": false
84
+ },
85
+ "inverse": {
86
+ "value": "{color.brand.lime.200.value}",
87
+ "public": true,
88
+ "inverse": true,
89
+ "usage": "",
90
+ "wcag": "n/a",
91
+ "deprecated": false
92
+ }
93
+ },
94
+ "navy": {
95
+ "default": {
96
+ "value": "{color.brand.navy.800.value}",
97
+ "public": true,
98
+ "default": true,
99
+ "usage": "",
100
+ "wcag": "n/a",
101
+ "deprecated": false
102
+ },
103
+ "inverse": {
104
+ "value": "{color.brand.navy.300.value}",
105
+ "public": true,
106
+ "inverse": true,
107
+ "usage": "",
108
+ "wcag": "n/a",
109
+ "deprecated": false
110
+ }
111
+ },
112
+ "neutral": {
113
+ "default": {
114
+ "value": "{color.brand.neutral.600.value}",
115
+ "public": true,
116
+ "default": true,
117
+ "usage": "",
118
+ "wcag": "n/a",
119
+ "deprecated": false
120
+ },
121
+ "inverse": {
122
+ "value": "{color.brand.neutral.300.value}",
123
+ "public": true,
124
+ "inverse": true,
125
+ "usage": "",
126
+ "wcag": "n/a",
127
+ "deprecated": false
128
+ }
129
+ },
130
+ "pink": {
131
+ "default": {
132
+ "value": "{color.brand.pink.500.value}",
133
+ "public": true,
134
+ "default": true,
135
+ "usage": "",
136
+ "wcag": "n/a",
137
+ "deprecated": false
138
+ },
139
+ "inverse": {
140
+ "value": "{color.brand.pink.300.value}",
141
+ "public": true,
142
+ "inverse": true,
143
+ "usage": "",
144
+ "wcag": "n/a",
145
+ "deprecated": false
146
+ }
147
+ },
148
+ "purple": {
149
+ "default": {
150
+ "value": "{color.brand.purple.700.value}",
151
+ "public": true,
152
+ "default": true,
153
+ "usage": "",
154
+ "wcag": "n/a",
155
+ "deprecated": false
156
+ },
157
+ "inverse": {
158
+ "value": "{color.brand.purple.300.value}",
159
+ "public": true,
160
+ "inverse": true,
161
+ "usage": "",
162
+ "wcag": "n/a",
163
+ "deprecated": false
164
+ }
165
+ },
166
+ "red": {
167
+ "default": {
168
+ "value": "{color.brand.red.600.value}",
169
+ "public": true,
170
+ "default": true,
171
+ "usage": "",
172
+ "wcag": "n/a",
173
+ "deprecated": false
174
+ },
175
+ "inverse": {
176
+ "value": "{color.brand.red.400.value}",
177
+ "public": true,
178
+ "inverse": true,
179
+ "usage": "",
180
+ "wcag": "n/a",
181
+ "deprecated": false
182
+ }
183
+ },
184
+ "turquoise": {
185
+ "default": {
186
+ "value": "{color.brand.turquoise.600.value}",
187
+ "public": true,
188
+ "default": true,
189
+ "usage": "",
190
+ "wcag": "n/a",
191
+ "deprecated": false
192
+ },
193
+ "inverse": {
194
+ "value": "{color.brand.turquoise.400.value}",
195
+ "public": true,
196
+ "inverse": true,
197
+ "usage": "",
198
+ "wcag": "n/a",
199
+ "deprecated": false
200
+ }
201
+ },
202
+ "yellow": {
203
+ "default": {
204
+ "value": "{color.brand.yellow.300.value}",
205
+ "public": true,
206
+ "default": true,
207
+ "usage": "",
208
+ "wcag": "n/a",
209
+ "deprecated": false
210
+ },
211
+ "inverse": {
212
+ "value": "{color.brand.yellow.200.value}",
213
+ "public": true,
214
+ "inverse": true,
215
+ "usage": "",
216
+ "wcag": "n/a",
217
+ "deprecated": false
218
+ }
219
+ },
220
+ "error": {
221
+ "default": {
222
+ "value": "{color.base.error.400.value}",
223
+ "public": true,
224
+ "default": true,
225
+ "usage": "",
226
+ "wcag": "n/a",
227
+ "deprecated": false
228
+ },
229
+ "inverse": {
230
+ "value": "{color.base.error.200.value}",
231
+ "public": true,
232
+ "inverse": true,
233
+ "usage": "",
234
+ "wcag": "n/a",
235
+ "deprecated": false
236
+ }
237
+ },
238
+ "warning": {
239
+ "default": {
240
+ "value": "{color.base.warning.200.value}",
241
+ "public": true,
242
+ "default": true,
243
+ "usage": "",
244
+ "wcag": "n/a",
245
+ "deprecated": false
246
+ },
247
+ "inverse": {
248
+ "value": "{color.base.warning.200.value}",
249
+ "public": true,
250
+ "inverse": true,
251
+ "usage": "",
252
+ "wcag": "n/a",
253
+ "deprecated": false
254
+ }
255
+ },
256
+ "success": {
257
+ "default": {
258
+ "value": "{color.base.success.400.value}",
259
+ "public": true,
260
+ "default": true,
261
+ "usage": "",
262
+ "wcag": "n/a",
263
+ "deprecated": false
264
+ },
265
+ "inverse": {
266
+ "value": "{color.base.success.200.value}",
267
+ "public": true,
268
+ "inverse": true,
269
+ "usage": "",
270
+ "wcag": "n/a",
271
+ "deprecated": false
272
+ }
273
+ }
274
+ }
275
+ }
276
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "elevation": {
3
+ "100": {
4
+ "value": "0px 0px 5px rgba(0, 0, 0, 0)",
5
+ "public": true,
6
+ "comment": "for the least amount of emphasis",
7
+ "deprecated": false
8
+ },
9
+ "200": {
10
+ "value": "0px 0px 10px rgba(0, 0, 0, 0)",
11
+ "public": true,
12
+ "comment": "for more emphasis than low elevation",
13
+ "deprecated": false
14
+ },
15
+ "300": {
16
+ "value": "0px 0px 15px rgba(0, 0, 0, 0)",
17
+ "public": true,
18
+ "comment": "for maximum emphasis or differentiation",
19
+ "deprecated": false
20
+ }
21
+ }
22
+ }