@atlaskit/tokens 0.10.14 → 0.10.17

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 (166) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/css/atlassian-legacy-dark.css +290 -0
  3. package/css/atlassian-legacy-light.css +290 -0
  4. package/dist/cjs/artifacts/palettes-raw/legacy-palette.js +1970 -0
  5. package/dist/cjs/artifacts/{palettes-raw.js → palettes-raw/palette.js} +233 -233
  6. package/dist/cjs/artifacts/tokens-raw/atlassian-legacy-dark.js +6758 -0
  7. package/dist/cjs/artifacts/tokens-raw/atlassian-legacy-light.js +6718 -0
  8. package/dist/cjs/constants.js +7 -5
  9. package/dist/cjs/entry-points/palettes-raw.js +2 -2
  10. package/dist/cjs/get-token.js +1 -1
  11. package/dist/cjs/palettes/legacy-palette.js +825 -0
  12. package/dist/cjs/{tokens → palettes}/palette.js +0 -0
  13. package/dist/cjs/tokens/atlassian-legacy-dark/color/accent.js +296 -0
  14. package/dist/cjs/tokens/atlassian-legacy-dark/color/background.js +250 -0
  15. package/dist/cjs/tokens/atlassian-legacy-dark/color/border.js +53 -0
  16. package/dist/cjs/tokens/atlassian-legacy-dark/color/icon.js +52 -0
  17. package/dist/cjs/tokens/atlassian-legacy-dark/color/interaction.js +22 -0
  18. package/dist/cjs/tokens/atlassian-legacy-dark/color/skeleton.js +20 -0
  19. package/dist/cjs/tokens/atlassian-legacy-dark/color/text.js +63 -0
  20. package/dist/cjs/tokens/atlassian-legacy-dark/deprecated/deprecated.js +532 -0
  21. package/dist/cjs/tokens/atlassian-legacy-dark/elevation/shadow.js +89 -0
  22. package/dist/cjs/tokens/atlassian-legacy-dark/elevation/surface.js +26 -0
  23. package/dist/cjs/tokens/atlassian-legacy-dark/utility/utility.js +20 -0
  24. package/dist/cjs/tokens/atlassian-legacy-light/color/accent.js +296 -0
  25. package/dist/cjs/tokens/atlassian-legacy-light/color/background.js +249 -0
  26. package/dist/cjs/tokens/atlassian-legacy-light/color/border.js +53 -0
  27. package/dist/cjs/tokens/atlassian-legacy-light/color/icon.js +52 -0
  28. package/dist/cjs/tokens/atlassian-legacy-light/color/interaction.js +22 -0
  29. package/dist/cjs/tokens/atlassian-legacy-light/color/skeleton.js +20 -0
  30. package/dist/cjs/tokens/atlassian-legacy-light/color/text.js +63 -0
  31. package/dist/cjs/tokens/atlassian-legacy-light/deprecated/deprecated.js +523 -0
  32. package/dist/cjs/tokens/atlassian-legacy-light/elevation/shadow.js +71 -0
  33. package/dist/cjs/tokens/atlassian-legacy-light/elevation/surface.js +26 -0
  34. package/dist/cjs/tokens/atlassian-legacy-light/utility/utility.js +20 -0
  35. package/dist/cjs/version.json +1 -1
  36. package/dist/es2019/artifacts/palettes-raw/legacy-palette.js +1962 -0
  37. package/dist/es2019/artifacts/{palettes-raw.js → palettes-raw/palette.js} +233 -233
  38. package/dist/es2019/artifacts/tokens-raw/atlassian-legacy-dark.js +6750 -0
  39. package/dist/es2019/artifacts/tokens-raw/atlassian-legacy-light.js +6710 -0
  40. package/dist/es2019/constants.js +5 -3
  41. package/dist/es2019/entry-points/palettes-raw.js +1 -1
  42. package/dist/es2019/get-token.js +1 -1
  43. package/dist/es2019/palettes/legacy-palette.js +817 -0
  44. package/dist/es2019/{tokens → palettes}/palette.js +0 -0
  45. package/dist/es2019/tokens/atlassian-legacy-dark/color/accent.js +289 -0
  46. package/dist/es2019/tokens/atlassian-legacy-dark/color/background.js +243 -0
  47. package/dist/es2019/tokens/atlassian-legacy-dark/color/border.js +46 -0
  48. package/dist/es2019/tokens/atlassian-legacy-dark/color/icon.js +45 -0
  49. package/dist/es2019/tokens/atlassian-legacy-dark/color/interaction.js +15 -0
  50. package/dist/es2019/tokens/atlassian-legacy-dark/color/skeleton.js +13 -0
  51. package/dist/es2019/tokens/atlassian-legacy-dark/color/text.js +56 -0
  52. package/dist/es2019/tokens/atlassian-legacy-dark/deprecated/deprecated.js +525 -0
  53. package/dist/es2019/tokens/atlassian-legacy-dark/elevation/shadow.js +82 -0
  54. package/dist/es2019/tokens/atlassian-legacy-dark/elevation/surface.js +19 -0
  55. package/dist/es2019/tokens/atlassian-legacy-dark/utility/utility.js +13 -0
  56. package/dist/es2019/tokens/atlassian-legacy-light/color/accent.js +289 -0
  57. package/dist/es2019/tokens/atlassian-legacy-light/color/background.js +242 -0
  58. package/dist/es2019/tokens/atlassian-legacy-light/color/border.js +46 -0
  59. package/dist/es2019/tokens/atlassian-legacy-light/color/icon.js +45 -0
  60. package/dist/es2019/tokens/atlassian-legacy-light/color/interaction.js +15 -0
  61. package/dist/es2019/tokens/atlassian-legacy-light/color/skeleton.js +13 -0
  62. package/dist/es2019/tokens/atlassian-legacy-light/color/text.js +56 -0
  63. package/dist/es2019/tokens/atlassian-legacy-light/deprecated/deprecated.js +516 -0
  64. package/dist/es2019/tokens/atlassian-legacy-light/elevation/shadow.js +64 -0
  65. package/dist/es2019/tokens/atlassian-legacy-light/elevation/surface.js +19 -0
  66. package/dist/es2019/tokens/atlassian-legacy-light/utility/utility.js +13 -0
  67. package/dist/es2019/version.json +1 -1
  68. package/dist/esm/artifacts/palettes-raw/legacy-palette.js +1962 -0
  69. package/dist/esm/artifacts/{palettes-raw.js → palettes-raw/palette.js} +233 -233
  70. package/dist/esm/artifacts/tokens-raw/atlassian-legacy-dark.js +6750 -0
  71. package/dist/esm/artifacts/tokens-raw/atlassian-legacy-light.js +6710 -0
  72. package/dist/esm/constants.js +5 -3
  73. package/dist/esm/entry-points/palettes-raw.js +1 -1
  74. package/dist/esm/get-token.js +1 -1
  75. package/dist/esm/palettes/legacy-palette.js +817 -0
  76. package/dist/esm/{tokens → palettes}/palette.js +0 -0
  77. package/dist/esm/tokens/atlassian-legacy-dark/color/accent.js +289 -0
  78. package/dist/esm/tokens/atlassian-legacy-dark/color/background.js +243 -0
  79. package/dist/esm/tokens/atlassian-legacy-dark/color/border.js +46 -0
  80. package/dist/esm/tokens/atlassian-legacy-dark/color/icon.js +45 -0
  81. package/dist/esm/tokens/atlassian-legacy-dark/color/interaction.js +15 -0
  82. package/dist/esm/tokens/atlassian-legacy-dark/color/skeleton.js +13 -0
  83. package/dist/esm/tokens/atlassian-legacy-dark/color/text.js +56 -0
  84. package/dist/esm/tokens/atlassian-legacy-dark/deprecated/deprecated.js +525 -0
  85. package/dist/esm/tokens/atlassian-legacy-dark/elevation/shadow.js +82 -0
  86. package/dist/esm/tokens/atlassian-legacy-dark/elevation/surface.js +19 -0
  87. package/dist/esm/tokens/atlassian-legacy-dark/utility/utility.js +13 -0
  88. package/dist/esm/tokens/atlassian-legacy-light/color/accent.js +289 -0
  89. package/dist/esm/tokens/atlassian-legacy-light/color/background.js +242 -0
  90. package/dist/esm/tokens/atlassian-legacy-light/color/border.js +46 -0
  91. package/dist/esm/tokens/atlassian-legacy-light/color/icon.js +45 -0
  92. package/dist/esm/tokens/atlassian-legacy-light/color/interaction.js +15 -0
  93. package/dist/esm/tokens/atlassian-legacy-light/color/skeleton.js +13 -0
  94. package/dist/esm/tokens/atlassian-legacy-light/color/text.js +56 -0
  95. package/dist/esm/tokens/atlassian-legacy-light/deprecated/deprecated.js +516 -0
  96. package/dist/esm/tokens/atlassian-legacy-light/elevation/shadow.js +64 -0
  97. package/dist/esm/tokens/atlassian-legacy-light/elevation/surface.js +19 -0
  98. package/dist/esm/tokens/atlassian-legacy-light/utility/utility.js +13 -0
  99. package/dist/esm/version.json +1 -1
  100. package/dist/types/artifacts/{palettes-raw.d.ts → palettes-raw/legacy-palette.d.ts} +1 -1
  101. package/dist/types/artifacts/palettes-raw/palette.d.ts +24 -0
  102. package/dist/types/artifacts/tokens-raw/atlassian-legacy-dark.d.ts +195 -0
  103. package/dist/types/artifacts/tokens-raw/atlassian-legacy-light.d.ts +147 -0
  104. package/dist/types/constants.d.ts +7 -2
  105. package/dist/types/entry-points/palettes-raw.d.ts +1 -1
  106. package/dist/types/palettes/legacy-palette.d.ts +10 -0
  107. package/dist/types/palettes/palette.d.ts +5 -0
  108. package/dist/types/tokens/atlassian-dark/color/accent.d.ts +2 -1
  109. package/dist/types/tokens/atlassian-dark/color/background.d.ts +2 -1
  110. package/dist/types/tokens/atlassian-dark/color/border.d.ts +2 -1
  111. package/dist/types/tokens/atlassian-dark/color/icon.d.ts +2 -1
  112. package/dist/types/tokens/atlassian-dark/color/interaction.d.ts +2 -1
  113. package/dist/types/tokens/atlassian-dark/color/skeleton.d.ts +2 -1
  114. package/dist/types/tokens/atlassian-dark/color/text.d.ts +2 -1
  115. package/dist/types/tokens/atlassian-dark/deprecated/deprecated.d.ts +2 -1
  116. package/dist/types/tokens/atlassian-dark/elevation/shadow.d.ts +2 -1
  117. package/dist/types/tokens/atlassian-dark/elevation/surface.d.ts +2 -1
  118. package/dist/types/tokens/atlassian-dark/utility/utility.d.ts +1 -1
  119. package/dist/types/tokens/atlassian-legacy-dark/color/accent.d.ts +4 -0
  120. package/dist/types/tokens/atlassian-legacy-dark/color/background.d.ts +4 -0
  121. package/dist/types/tokens/atlassian-legacy-dark/color/border.d.ts +4 -0
  122. package/dist/types/tokens/atlassian-legacy-dark/color/icon.d.ts +4 -0
  123. package/dist/types/tokens/atlassian-legacy-dark/color/interaction.d.ts +4 -0
  124. package/dist/types/tokens/atlassian-legacy-dark/color/skeleton.d.ts +4 -0
  125. package/dist/types/tokens/atlassian-legacy-dark/color/text.d.ts +4 -0
  126. package/dist/types/tokens/atlassian-legacy-dark/deprecated/deprecated.d.ts +4 -0
  127. package/dist/types/tokens/atlassian-legacy-dark/elevation/shadow.d.ts +4 -0
  128. package/dist/types/tokens/atlassian-legacy-dark/elevation/surface.d.ts +4 -0
  129. package/dist/types/tokens/atlassian-legacy-dark/utility/utility.d.ts +5 -0
  130. package/dist/types/tokens/atlassian-legacy-light/color/accent.d.ts +4 -0
  131. package/dist/types/tokens/atlassian-legacy-light/color/background.d.ts +4 -0
  132. package/dist/types/tokens/atlassian-legacy-light/color/border.d.ts +4 -0
  133. package/dist/types/tokens/atlassian-legacy-light/color/icon.d.ts +4 -0
  134. package/dist/types/tokens/atlassian-legacy-light/color/interaction.d.ts +4 -0
  135. package/dist/types/tokens/atlassian-legacy-light/color/skeleton.d.ts +4 -0
  136. package/dist/types/tokens/atlassian-legacy-light/color/text.d.ts +4 -0
  137. package/dist/types/tokens/atlassian-legacy-light/deprecated/deprecated.d.ts +4 -0
  138. package/dist/types/tokens/atlassian-legacy-light/elevation/shadow.d.ts +4 -0
  139. package/dist/types/tokens/atlassian-legacy-light/elevation/surface.d.ts +4 -0
  140. package/dist/types/tokens/atlassian-legacy-light/utility/utility.d.ts +5 -0
  141. package/dist/types/tokens/atlassian-light/color/accent.d.ts +2 -1
  142. package/dist/types/tokens/atlassian-light/color/background.d.ts +2 -1
  143. package/dist/types/tokens/atlassian-light/color/border.d.ts +2 -1
  144. package/dist/types/tokens/atlassian-light/color/icon.d.ts +2 -1
  145. package/dist/types/tokens/atlassian-light/color/interaction.d.ts +2 -1
  146. package/dist/types/tokens/atlassian-light/color/skeleton.d.ts +2 -1
  147. package/dist/types/tokens/atlassian-light/color/text.d.ts +2 -1
  148. package/dist/types/tokens/atlassian-light/deprecated/deprecated.d.ts +2 -1
  149. package/dist/types/tokens/atlassian-light/elevation/shadow.d.ts +2 -1
  150. package/dist/types/tokens/atlassian-light/elevation/surface.d.ts +2 -1
  151. package/dist/types/tokens/atlassian-light/utility/utility.d.ts +1 -1
  152. package/dist/types/tokens/default/color/accent.d.ts +2 -1
  153. package/dist/types/tokens/default/color/background.d.ts +2 -1
  154. package/dist/types/tokens/default/color/border.d.ts +2 -1
  155. package/dist/types/tokens/default/color/icon.d.ts +2 -1
  156. package/dist/types/tokens/default/color/interaction.d.ts +2 -1
  157. package/dist/types/tokens/default/color/skeleton.d.ts +2 -1
  158. package/dist/types/tokens/default/color/text.d.ts +2 -1
  159. package/dist/types/tokens/default/deprecated/deprecated.d.ts +2 -1
  160. package/dist/types/tokens/default/elevation/shadow.d.ts +2 -1
  161. package/dist/types/tokens/default/elevation/surface.d.ts +2 -1
  162. package/dist/types/tokens/default/utility/utility.d.ts +1 -1
  163. package/dist/types/types.d.ts +308 -426
  164. package/dist/types/utils/color-detection.d.ts +1 -1
  165. package/package.json +6 -4
  166. package/dist/types/tokens/palette.d.ts +0 -3
@@ -0,0 +1,817 @@
1
+ /**
2
+ * Legacy color palette sourced from: packages/design-system/theme/src/colors.tsx
3
+ *
4
+ * This palette should be exclusively used for backwards compatible themes
5
+ */
6
+ var palette = {
7
+ color: {
8
+ palette: {
9
+ transparent: {
10
+ value: 'transparent',
11
+ attributes: {
12
+ group: 'palette',
13
+ category: 'red'
14
+ }
15
+ },
16
+ R50: {
17
+ value: '#FFEBE6',
18
+ attributes: {
19
+ group: 'palette',
20
+ category: 'red'
21
+ }
22
+ },
23
+ R75: {
24
+ value: '#FFBDAD',
25
+ attributes: {
26
+ group: 'palette',
27
+ category: 'red'
28
+ }
29
+ },
30
+ R100: {
31
+ value: '#FF8F73',
32
+ attributes: {
33
+ group: 'palette',
34
+ category: 'red'
35
+ }
36
+ },
37
+ R200: {
38
+ value: '#FF7452',
39
+ attributes: {
40
+ group: 'palette',
41
+ category: 'red'
42
+ }
43
+ },
44
+ R300: {
45
+ value: '#FF5630',
46
+ attributes: {
47
+ group: 'palette',
48
+ category: 'red'
49
+ }
50
+ },
51
+ R400: {
52
+ value: '#DE350B',
53
+ attributes: {
54
+ group: 'palette',
55
+ category: 'red'
56
+ }
57
+ },
58
+ R500: {
59
+ value: '#BF2600',
60
+ attributes: {
61
+ group: 'palette',
62
+ category: 'red'
63
+ }
64
+ },
65
+ Y50: {
66
+ value: '#FFFAE6',
67
+ attributes: {
68
+ group: 'palette',
69
+ category: 'yellow'
70
+ }
71
+ },
72
+ Y75: {
73
+ value: '#FFF0B3',
74
+ attributes: {
75
+ group: 'palette',
76
+ category: 'yellow'
77
+ }
78
+ },
79
+ Y100: {
80
+ value: '#FFE380',
81
+ attributes: {
82
+ group: 'palette',
83
+ category: 'yellow'
84
+ }
85
+ },
86
+ Y200: {
87
+ value: '#FFC400',
88
+ attributes: {
89
+ group: 'palette',
90
+ category: 'yellow'
91
+ }
92
+ },
93
+ Y300: {
94
+ value: '#FFAB00',
95
+ attributes: {
96
+ group: 'palette',
97
+ category: 'yellow'
98
+ }
99
+ },
100
+ Y400: {
101
+ value: '#FF991F',
102
+ attributes: {
103
+ group: 'palette',
104
+ category: 'yellow'
105
+ }
106
+ },
107
+ Y500: {
108
+ value: '#FF8B00',
109
+ attributes: {
110
+ group: 'palette',
111
+ category: 'yellow'
112
+ }
113
+ },
114
+ G50: {
115
+ value: '#E3FCEF',
116
+ attributes: {
117
+ group: 'palette',
118
+ category: 'green'
119
+ }
120
+ },
121
+ G75: {
122
+ value: '#ABF5D1',
123
+ attributes: {
124
+ group: 'palette',
125
+ category: 'green'
126
+ }
127
+ },
128
+ G100: {
129
+ value: '#79F2C0',
130
+ attributes: {
131
+ group: 'palette',
132
+ category: 'green'
133
+ }
134
+ },
135
+ G200: {
136
+ value: '#57D9A3',
137
+ attributes: {
138
+ group: 'palette',
139
+ category: 'green'
140
+ }
141
+ },
142
+ G300: {
143
+ value: '#36B37E',
144
+ attributes: {
145
+ group: 'palette',
146
+ category: 'green'
147
+ }
148
+ },
149
+ G400: {
150
+ value: '#00875A',
151
+ attributes: {
152
+ group: 'palette',
153
+ category: 'green'
154
+ }
155
+ },
156
+ G500: {
157
+ value: '#006644',
158
+ attributes: {
159
+ group: 'palette',
160
+ category: 'green'
161
+ }
162
+ },
163
+ B50: {
164
+ value: '#DEEBFF',
165
+ attributes: {
166
+ group: 'palette',
167
+ category: 'blue'
168
+ }
169
+ },
170
+ B75: {
171
+ value: '#B3D4FF',
172
+ attributes: {
173
+ group: 'palette',
174
+ category: 'blue'
175
+ }
176
+ },
177
+ B100: {
178
+ value: '#4C9AFF',
179
+ attributes: {
180
+ group: 'palette',
181
+ category: 'blue'
182
+ }
183
+ },
184
+ B200: {
185
+ value: '#2684FF',
186
+ attributes: {
187
+ group: 'palette',
188
+ category: 'blue'
189
+ }
190
+ },
191
+ B300: {
192
+ value: '#0065FF',
193
+ attributes: {
194
+ group: 'palette',
195
+ category: 'blue'
196
+ }
197
+ },
198
+ B400: {
199
+ value: '#0052CC',
200
+ attributes: {
201
+ group: 'palette',
202
+ category: 'blue'
203
+ }
204
+ },
205
+ B500: {
206
+ value: '#0747A6',
207
+ attributes: {
208
+ group: 'palette',
209
+ category: 'blue'
210
+ }
211
+ },
212
+ P50: {
213
+ value: '#EAE6FF',
214
+ attributes: {
215
+ group: 'palette',
216
+ category: 'purple'
217
+ }
218
+ },
219
+ P75: {
220
+ value: '#C0B6F2',
221
+ attributes: {
222
+ group: 'palette',
223
+ category: 'purple'
224
+ }
225
+ },
226
+ P100: {
227
+ value: '#998DD9',
228
+ attributes: {
229
+ group: 'palette',
230
+ category: 'purple'
231
+ }
232
+ },
233
+ P200: {
234
+ value: '#8777D9',
235
+ attributes: {
236
+ group: 'palette',
237
+ category: 'purple'
238
+ }
239
+ },
240
+ P300: {
241
+ value: '#6554C0',
242
+ attributes: {
243
+ group: 'palette',
244
+ category: 'purple'
245
+ }
246
+ },
247
+ P400: {
248
+ value: '#5243AA',
249
+ attributes: {
250
+ group: 'palette',
251
+ category: 'purple'
252
+ }
253
+ },
254
+ P500: {
255
+ value: '#403294',
256
+ attributes: {
257
+ group: 'palette',
258
+ category: 'purple'
259
+ }
260
+ },
261
+ T50: {
262
+ value: '#E6FCFF',
263
+ attributes: {
264
+ group: 'palette',
265
+ category: 'teal'
266
+ }
267
+ },
268
+ T75: {
269
+ value: '#B3F5FF',
270
+ attributes: {
271
+ group: 'palette',
272
+ category: 'teal'
273
+ }
274
+ },
275
+ T100: {
276
+ value: '#79E2F2',
277
+ attributes: {
278
+ group: 'palette',
279
+ category: 'teal'
280
+ }
281
+ },
282
+ T200: {
283
+ value: '#00C7E6',
284
+ attributes: {
285
+ group: 'palette',
286
+ category: 'teal'
287
+ }
288
+ },
289
+ T300: {
290
+ value: '#00B8D9',
291
+ attributes: {
292
+ group: 'palette',
293
+ category: 'teal'
294
+ }
295
+ },
296
+ T400: {
297
+ value: '#00A3BF',
298
+ attributes: {
299
+ group: 'palette',
300
+ category: 'teal'
301
+ }
302
+ },
303
+ T500: {
304
+ value: '#008DA6',
305
+ attributes: {
306
+ group: 'palette',
307
+ category: 'teal'
308
+ }
309
+ },
310
+ N0: {
311
+ value: '#FFFFFF',
312
+ attributes: {
313
+ group: 'palette',
314
+ category: 'light mode neutral'
315
+ }
316
+ },
317
+ N10: {
318
+ value: '#FAFBFC',
319
+ attributes: {
320
+ group: 'palette',
321
+ category: 'light mode neutral'
322
+ }
323
+ },
324
+ N20: {
325
+ value: '#F4F5F7',
326
+ attributes: {
327
+ group: 'palette',
328
+ category: 'light mode neutral'
329
+ }
330
+ },
331
+ N30: {
332
+ value: '#EBECF0',
333
+ attributes: {
334
+ group: 'palette',
335
+ category: 'light mode neutral'
336
+ }
337
+ },
338
+ N40: {
339
+ value: '#DFE1E6',
340
+ attributes: {
341
+ group: 'palette',
342
+ category: 'light mode neutral'
343
+ }
344
+ },
345
+ N50: {
346
+ value: '#C1C7D0',
347
+ attributes: {
348
+ group: 'palette',
349
+ category: 'light mode neutral'
350
+ }
351
+ },
352
+ N60: {
353
+ value: '#B3BAC5',
354
+ attributes: {
355
+ group: 'palette',
356
+ category: 'light mode neutral'
357
+ }
358
+ },
359
+ N70: {
360
+ value: '#A5ADBA',
361
+ attributes: {
362
+ group: 'palette',
363
+ category: 'light mode neutral'
364
+ }
365
+ },
366
+ N80: {
367
+ value: '#97A0AF',
368
+ attributes: {
369
+ group: 'palette',
370
+ category: 'light mode neutral'
371
+ }
372
+ },
373
+ N90: {
374
+ value: '#8993A4',
375
+ attributes: {
376
+ group: 'palette',
377
+ category: 'light mode neutral'
378
+ }
379
+ },
380
+ N100: {
381
+ value: '#7A869A',
382
+ attributes: {
383
+ group: 'palette',
384
+ category: 'light mode neutral'
385
+ }
386
+ },
387
+ N200: {
388
+ value: '#6B778C',
389
+ attributes: {
390
+ group: 'palette',
391
+ category: 'light mode neutral'
392
+ }
393
+ },
394
+ N300: {
395
+ value: '#5E6C84',
396
+ attributes: {
397
+ group: 'palette',
398
+ category: 'light mode neutral'
399
+ }
400
+ },
401
+ N400: {
402
+ value: '#505F79',
403
+ attributes: {
404
+ group: 'palette',
405
+ category: 'light mode neutral'
406
+ }
407
+ },
408
+ N500: {
409
+ value: '#42526E',
410
+ attributes: {
411
+ group: 'palette',
412
+ category: 'light mode neutral'
413
+ }
414
+ },
415
+ N600: {
416
+ value: '#344563',
417
+ attributes: {
418
+ group: 'palette',
419
+ category: 'light mode neutral'
420
+ }
421
+ },
422
+ N700: {
423
+ value: '#253858',
424
+ attributes: {
425
+ group: 'palette',
426
+ category: 'light mode neutral'
427
+ }
428
+ },
429
+ N800: {
430
+ value: '#172B4D',
431
+ attributes: {
432
+ group: 'palette',
433
+ category: 'light mode neutral'
434
+ }
435
+ },
436
+ N900: {
437
+ value: '#091E42',
438
+ attributes: {
439
+ group: 'palette',
440
+ category: 'light mode neutral'
441
+ }
442
+ },
443
+ N10A: {
444
+ value: '#091e425',
445
+ attributes: {
446
+ group: 'palette',
447
+ category: 'light mode neutral'
448
+ }
449
+ },
450
+ N20A: {
451
+ value: '#091e42a',
452
+ attributes: {
453
+ group: 'palette',
454
+ category: 'light mode neutral'
455
+ }
456
+ },
457
+ N30A: {
458
+ value: '#091e4214',
459
+ attributes: {
460
+ group: 'palette',
461
+ category: 'light mode neutral'
462
+ }
463
+ },
464
+ N40A: {
465
+ value: '#091e4221',
466
+ attributes: {
467
+ group: 'palette',
468
+ category: 'light mode neutral'
469
+ }
470
+ },
471
+ N50A: {
472
+ value: '#091e423f',
473
+ attributes: {
474
+ group: 'palette',
475
+ category: 'light mode neutral'
476
+ }
477
+ },
478
+ N60A: {
479
+ value: '#091e424f',
480
+ attributes: {
481
+ group: 'palette',
482
+ category: 'light mode neutral'
483
+ }
484
+ },
485
+ N70A: {
486
+ value: '#091e425b',
487
+ attributes: {
488
+ group: 'palette',
489
+ category: 'light mode neutral'
490
+ }
491
+ },
492
+ N80A: {
493
+ value: '#091e426b',
494
+ attributes: {
495
+ group: 'palette',
496
+ category: 'light mode neutral'
497
+ }
498
+ },
499
+ N90A: {
500
+ value: '#091e427a',
501
+ attributes: {
502
+ group: 'palette',
503
+ category: 'light mode neutral'
504
+ }
505
+ },
506
+ N100A: {
507
+ value: '#091e4289',
508
+ attributes: {
509
+ group: 'palette',
510
+ category: 'light mode neutral'
511
+ }
512
+ },
513
+ N200A: {
514
+ value: '#091e4299',
515
+ attributes: {
516
+ group: 'palette',
517
+ category: 'light mode neutral'
518
+ }
519
+ },
520
+ N300A: {
521
+ value: '#091e42a8',
522
+ attributes: {
523
+ group: 'palette',
524
+ category: 'light mode neutral'
525
+ }
526
+ },
527
+ N400A: {
528
+ value: '#091e42b5',
529
+ attributes: {
530
+ group: 'palette',
531
+ category: 'light mode neutral'
532
+ }
533
+ },
534
+ N500A: {
535
+ value: '#091e42c4',
536
+ attributes: {
537
+ group: 'palette',
538
+ category: 'light mode neutral'
539
+ }
540
+ },
541
+ N600A: {
542
+ value: '#091e42d1',
543
+ attributes: {
544
+ group: 'palette',
545
+ category: 'light mode neutral'
546
+ }
547
+ },
548
+ N700A: {
549
+ value: '#091e42e2',
550
+ attributes: {
551
+ group: 'palette',
552
+ category: 'light mode neutral'
553
+ }
554
+ },
555
+ N800A: {
556
+ value: '#091e42f2',
557
+ attributes: {
558
+ group: 'palette',
559
+ category: 'light mode neutral'
560
+ }
561
+ },
562
+ DN900: {
563
+ value: '#E6EDFA',
564
+ attributes: {
565
+ group: 'palette',
566
+ category: 'dark mode neutral'
567
+ }
568
+ },
569
+ DN800: {
570
+ value: '#DCE5F5',
571
+ attributes: {
572
+ group: 'palette',
573
+ category: 'dark mode neutral'
574
+ }
575
+ },
576
+ DN700: {
577
+ value: '#CED9EB',
578
+ attributes: {
579
+ group: 'palette',
580
+ category: 'dark mode neutral'
581
+ }
582
+ },
583
+ DN600: {
584
+ value: '#B8C7E0',
585
+ attributes: {
586
+ group: 'palette',
587
+ category: 'dark mode neutral'
588
+ }
589
+ },
590
+ DN500: {
591
+ value: '#ABBBD6',
592
+ attributes: {
593
+ group: 'palette',
594
+ category: 'dark mode neutral'
595
+ }
596
+ },
597
+ DN400: {
598
+ value: '#9FB0CC',
599
+ attributes: {
600
+ group: 'palette',
601
+ category: 'dark mode neutral'
602
+ }
603
+ },
604
+ DN300: {
605
+ value: '#8C9CB8',
606
+ attributes: {
607
+ group: 'palette',
608
+ category: 'dark mode neutral'
609
+ }
610
+ },
611
+ DN200: {
612
+ value: '#7988A3',
613
+ attributes: {
614
+ group: 'palette',
615
+ category: 'dark mode neutral'
616
+ }
617
+ },
618
+ DN100: {
619
+ value: '#67758F',
620
+ attributes: {
621
+ group: 'palette',
622
+ category: 'dark mode neutral'
623
+ }
624
+ },
625
+ DN90: {
626
+ value: '#56637A',
627
+ attributes: {
628
+ group: 'palette',
629
+ category: 'dark mode neutral'
630
+ }
631
+ },
632
+ DN80: {
633
+ value: '#455166',
634
+ attributes: {
635
+ group: 'palette',
636
+ category: 'dark mode neutral'
637
+ }
638
+ },
639
+ DN70: {
640
+ value: '#3B475C',
641
+ attributes: {
642
+ group: 'palette',
643
+ category: 'dark mode neutral'
644
+ }
645
+ },
646
+ DN60: {
647
+ value: '#313D52',
648
+ attributes: {
649
+ group: 'palette',
650
+ category: 'dark mode neutral'
651
+ }
652
+ },
653
+ DN50: {
654
+ value: '#283447',
655
+ attributes: {
656
+ group: 'palette',
657
+ category: 'dark mode neutral'
658
+ }
659
+ },
660
+ DN40: {
661
+ value: '#202B3D',
662
+ attributes: {
663
+ group: 'palette',
664
+ category: 'dark mode neutral'
665
+ }
666
+ },
667
+ DN30: {
668
+ value: '#1B2638',
669
+ attributes: {
670
+ group: 'palette',
671
+ category: 'dark mode neutral'
672
+ }
673
+ },
674
+ DN20: {
675
+ value: '#121A29',
676
+ attributes: {
677
+ group: 'palette',
678
+ category: 'dark mode neutral'
679
+ }
680
+ },
681
+ DN10: {
682
+ value: '#0E1624',
683
+ attributes: {
684
+ group: 'palette',
685
+ category: 'dark mode neutral'
686
+ }
687
+ },
688
+ DN0: {
689
+ value: '#0D1424',
690
+ attributes: {
691
+ group: 'palette',
692
+ category: 'dark mode neutral'
693
+ }
694
+ },
695
+ DN800A: {
696
+ value: '#0d1424f',
697
+ attributes: {
698
+ group: 'palette',
699
+ category: 'dark mode neutral'
700
+ }
701
+ },
702
+ DN700A: {
703
+ value: '#0d142423',
704
+ attributes: {
705
+ group: 'palette',
706
+ category: 'dark mode neutral'
707
+ }
708
+ },
709
+ DN600A: {
710
+ value: '#0d14242d',
711
+ attributes: {
712
+ group: 'palette',
713
+ category: 'dark mode neutral'
714
+ }
715
+ },
716
+ DN500A: {
717
+ value: '#0d142449',
718
+ attributes: {
719
+ group: 'palette',
720
+ category: 'dark mode neutral'
721
+ }
722
+ },
723
+ DN400A: {
724
+ value: '#0d14245b',
725
+ attributes: {
726
+ group: 'palette',
727
+ category: 'dark mode neutral'
728
+ }
729
+ },
730
+ DN300A: {
731
+ value: '#0d142466',
732
+ attributes: {
733
+ group: 'palette',
734
+ category: 'dark mode neutral'
735
+ }
736
+ },
737
+ DN200A: {
738
+ value: '#0d142477',
739
+ attributes: {
740
+ group: 'palette',
741
+ category: 'dark mode neutral'
742
+ }
743
+ },
744
+ DN100A: {
745
+ value: '#0d142487',
746
+ attributes: {
747
+ group: 'palette',
748
+ category: 'dark mode neutral'
749
+ }
750
+ },
751
+ DN90A: {
752
+ value: '#0d1424a0',
753
+ attributes: {
754
+ group: 'palette',
755
+ category: 'dark mode neutral'
756
+ }
757
+ },
758
+ DN80A: {
759
+ value: '#0d1424ba',
760
+ attributes: {
761
+ group: 'palette',
762
+ category: 'dark mode neutral'
763
+ }
764
+ },
765
+ DN70A: {
766
+ value: '#0d1424c6',
767
+ attributes: {
768
+ group: 'palette',
769
+ category: 'dark mode neutral'
770
+ }
771
+ },
772
+ DN60A: {
773
+ value: '#0d1424ce',
774
+ attributes: {
775
+ group: 'palette',
776
+ category: 'dark mode neutral'
777
+ }
778
+ },
779
+ DN50A: {
780
+ value: '#0d1424d8',
781
+ attributes: {
782
+ group: 'palette',
783
+ category: 'dark mode neutral'
784
+ }
785
+ },
786
+ DN40A: {
787
+ value: '#0d1424e2',
788
+ attributes: {
789
+ group: 'palette',
790
+ category: 'dark mode neutral'
791
+ }
792
+ },
793
+ DN30A: {
794
+ value: '#0d1424ea',
795
+ attributes: {
796
+ group: 'palette',
797
+ category: 'dark mode neutral'
798
+ }
799
+ },
800
+ DN20A: {
801
+ value: '#0d1424f2',
802
+ attributes: {
803
+ group: 'palette',
804
+ category: 'dark mode neutral'
805
+ }
806
+ },
807
+ DN10A: {
808
+ value: '#0d1424f7',
809
+ attributes: {
810
+ group: 'palette',
811
+ category: 'dark mode neutral'
812
+ }
813
+ }
814
+ }
815
+ }
816
+ };
817
+ export default palette;