@nswds/tokens 2.2.1 → 2.4.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 (163) hide show
  1. package/dist/index.d.mts +3009 -0
  2. package/dist/index.d.ts +3009 -0
  3. package/dist/index.js +10718 -0
  4. package/dist/index.js.map +1 -0
  5. package/dist/index.mjs +10706 -0
  6. package/dist/index.mjs.map +1 -0
  7. package/dist/json/colors/global/hex.json +1 -0
  8. package/dist/json/colors/global/hsl.json +1 -0
  9. package/dist/json/colors/global/oklch.json +1 -0
  10. package/dist/json/colors/global/rgb.json +1 -0
  11. package/dist/json/colors/themes/masterbrand/hex.json +1 -0
  12. package/dist/json/colors/themes/masterbrand/hsl.json +1 -0
  13. package/dist/json/colors/themes/masterbrand/oklch.json +1 -0
  14. package/dist/json/colors/themes/masterbrand/rgb.json +1 -0
  15. package/package.json +55 -6
  16. package/src/css/colors/global/hex.css +192 -0
  17. package/src/css/colors/global/hsl.css +192 -0
  18. package/src/css/colors/global/oklch.css +192 -0
  19. package/src/css/colors/global/rgb.css +192 -0
  20. package/src/css/colors/themes/masterbrand/hex.css +2 -0
  21. package/src/css/colors/themes/masterbrand/hsl.css +2 -0
  22. package/src/css/colors/themes/masterbrand/oklch.css +2 -0
  23. package/src/css/colors/themes/masterbrand/rgb.css +2 -0
  24. package/src/index.ts +295 -0
  25. package/src/js/colors/global/hex.js +210 -0
  26. package/src/js/colors/global/hsl.js +210 -0
  27. package/src/js/colors/global/oklch.js +210 -0
  28. package/src/js/colors/global/rgb.js +210 -0
  29. package/src/js/colors/themes/masterbrand/hex.js +72 -0
  30. package/src/js/colors/themes/masterbrand/hsl.js +72 -0
  31. package/src/js/colors/themes/masterbrand/oklch.js +72 -0
  32. package/src/js/colors/themes/masterbrand/rgb.js +72 -0
  33. package/src/json/colors/global/hex.json +1 -0
  34. package/src/json/colors/global/hsl.json +1 -0
  35. package/src/json/colors/global/oklch.json +1 -0
  36. package/src/json/colors/global/rgb.json +1 -0
  37. package/src/json/colors/themes/masterbrand/hex.json +1 -0
  38. package/src/json/colors/themes/masterbrand/hsl.json +1 -0
  39. package/src/json/colors/themes/masterbrand/oklch.json +1 -0
  40. package/src/json/colors/themes/masterbrand/rgb.json +1 -0
  41. package/src/less/colors/global/hsl.less +0 -0
  42. package/src/less/colors/global/oklch.less +0 -0
  43. package/src/less/colors/global/rgb.less +0 -0
  44. package/src/less/colors/themes/masterbrand/hex.less +0 -0
  45. package/src/less/colors/themes/masterbrand/hsl.less +0 -0
  46. package/src/less/colors/themes/masterbrand/oklch.less +0 -0
  47. package/src/less/colors/themes/masterbrand/rgb.less +0 -0
  48. package/src/scss/colors/global/hex.scss +190 -0
  49. package/src/scss/colors/global/hsl.scss +190 -0
  50. package/src/scss/colors/global/oklch.scss +190 -0
  51. package/src/scss/colors/global/rgb.scss +190 -0
  52. package/src/scss/colors/themes/masterbrand/hex.scss +56 -0
  53. package/src/scss/colors/themes/masterbrand/hsl.scss +56 -0
  54. package/src/scss/colors/themes/masterbrand/oklch.scss +56 -0
  55. package/src/scss/colors/themes/masterbrand/rgb.scss +56 -0
  56. package/src/tailwind/colors/global/hex.css +192 -0
  57. package/src/tailwind/colors/global/hsl.css +192 -0
  58. package/src/tailwind/colors/global/oklch.css +192 -0
  59. package/src/tailwind/colors/global/rgb.css +192 -0
  60. package/src/tailwind/colors/themes/masterbrand/hex.css +58 -0
  61. package/src/tailwind/colors/themes/masterbrand/hsl.css +58 -0
  62. package/src/tailwind/colors/themes/masterbrand/oklch.css +58 -0
  63. package/src/tailwind/colors/themes/masterbrand/rgb.css +58 -0
  64. package/src/ts/colors/global/hex.ts +210 -0
  65. package/src/ts/colors/global/hsl.ts +210 -0
  66. package/src/ts/colors/global/oklch.ts +210 -0
  67. package/src/ts/colors/global/rgb.ts +210 -0
  68. package/src/ts/colors/themes/masterbrand/hex.ts +72 -0
  69. package/src/ts/colors/themes/masterbrand/hsl.ts +72 -0
  70. package/src/ts/colors/themes/masterbrand/oklch.ts +72 -0
  71. package/src/ts/colors/themes/masterbrand/rgb.ts +72 -0
  72. package/src/types.d.ts +25 -0
  73. package/.gitattributes +0 -2
  74. package/.github/workflows/ai-pr-title.yml +0 -115
  75. package/.github/workflows/openai-pr-description.yml +0 -13
  76. package/.github/workflows/opencommit.yml +0 -36
  77. package/.github/workflows/release.yml +0 -30
  78. package/.github/workflows/validate-branch-name.yml +0 -21
  79. package/.prettierignore +0 -18
  80. package/.prettierrc +0 -8
  81. package/CHANGELOG.md +0 -38
  82. package/assets/placeholder.svg +0 -1
  83. package/brand/black/logo.png +0 -0
  84. package/brand/black/logo.svg +0 -30
  85. package/brand/icon-dark.ico +0 -0
  86. package/brand/icon-dark.png +0 -0
  87. package/brand/icon-dark.svg +0 -17
  88. package/brand/icon-light.ico +0 -0
  89. package/brand/icon-light.png +0 -0
  90. package/brand/icon-light.svg +0 -30
  91. package/brand/icon.svg +0 -30
  92. package/brand/logo.png +0 -0
  93. package/brand/logo.svg +0 -34
  94. package/brand/placeholder.svg +0 -1
  95. package/brand/reversed/logo.png +0 -0
  96. package/brand/reversed/logo.svg +0 -34
  97. package/brand/white/logo.png +0 -0
  98. package/brand/white/logo.svg +0 -21
  99. package/create-branch.sh +0 -29
  100. package/eslint.config.js +0 -20
  101. package/git-conventional-commits.yaml +0 -43
  102. package/icons/account_circle.svg +0 -1
  103. package/icons/attach_file.svg +0 -1
  104. package/icons/cancel.svg +0 -1
  105. package/icons/check.svg +0 -1
  106. package/icons/check_circle.svg +0 -1
  107. package/icons/chevron_down.svg +0 -1
  108. package/icons/chevron_left.svg +0 -1
  109. package/icons/chevron_right.svg +0 -1
  110. package/icons/chevron_up.svg +0 -1
  111. package/icons/close.svg +0 -1
  112. package/icons/collapse_all.svg +0 -1
  113. package/icons/computer.svg +0 -1
  114. package/icons/copy.svg +0 -1
  115. package/icons/dark_mode.svg +0 -1
  116. package/icons/delete.svg +0 -1
  117. package/icons/desktop.svg +0 -1
  118. package/icons/display_settings.svg +0 -1
  119. package/icons/dock_to_left.svg +0 -1
  120. package/icons/dock_to_right.svg +0 -1
  121. package/icons/double_arrow_left.svg +0 -1
  122. package/icons/double_arrow_right.svg +0 -1
  123. package/icons/download.svg +0 -1
  124. package/icons/east.svg +0 -1
  125. package/icons/error.svg +0 -1
  126. package/icons/exclamation.svg +0 -1
  127. package/icons/eye.svg +0 -1
  128. package/icons/favorite.svg +0 -1
  129. package/icons/help.svg +0 -1
  130. package/icons/info.svg +0 -1
  131. package/icons/language.svg +0 -1
  132. package/icons/light_mode.svg +0 -1
  133. package/icons/link.svg +0 -1
  134. package/icons/login.svg +0 -1
  135. package/icons/logout.svg +0 -1
  136. package/icons/menu.svg +0 -1
  137. package/icons/more_horiz.svg +0 -1
  138. package/icons/more_vert.svg +0 -1
  139. package/icons/north.svg +0 -1
  140. package/icons/open_in_new.svg +0 -1
  141. package/icons/print.svg +0 -1
  142. package/icons/progress_activity.svg +0 -1
  143. package/icons/remove.svg +0 -1
  144. package/icons/search.svg +0 -1
  145. package/icons/settings_brightness.svg +0 -1
  146. package/icons/share.svg +0 -1
  147. package/icons/side_navigation.svg +0 -1
  148. package/icons/south.svg +0 -1
  149. package/icons/unfold_less.svg +0 -1
  150. package/icons/unfold_more.svg +0 -1
  151. package/icons/upload.svg +0 -1
  152. package/icons/west.svg +0 -1
  153. package/pull-request.sh +0 -61
  154. package/release.config.mjs +0 -24
  155. package/tokens/global/color/hex.json +0 -782
  156. package/tokens/global/color/hsl.json +0 -1542
  157. package/tokens/global/color/oklch.json +0 -1542
  158. package/tokens/global/color/rgb.json +0 -1542
  159. package/tokens/themes/masterbrand/color/hex.json +0 -242
  160. package/tokens/themes/masterbrand/color/hsl.json +0 -466
  161. package/tokens/themes/masterbrand/color/oklch.json +0 -466
  162. package/tokens/themes/masterbrand/color/rgb.json +0 -466
  163. /package/{index.ts → src/less/colors/global/hex.less} +0 -0
@@ -1,782 +0,0 @@
1
- {
2
- "nsw-grey": {
3
- "50": {
4
- "$type": "color",
5
- "$value": "#fafafa"
6
- },
7
- "100": {
8
- "$type": "color",
9
- "$value": "#f5f5f5"
10
- },
11
- "150": {
12
- "$type": "color",
13
- "$value": "#f0f0f0"
14
- },
15
- "200": {
16
- "$type": "color",
17
- "$value": "#ebebeb"
18
- },
19
- "250": {
20
- "$type": "color",
21
- "$value": "#e5e4e5"
22
- },
23
- "300": {
24
- "$type": "color",
25
- "$value": "#dedee1"
26
- },
27
- "350": {
28
- "$type": "color",
29
- "$value": "#d6d8dc"
30
- },
31
- "400": {
32
- "$type": "color",
33
- "$value": "#cdd3d6"
34
- },
35
- "450": {
36
- "$type": "color",
37
- "$value": "#aab0b4"
38
- },
39
- "500": {
40
- "$type": "color",
41
- "$value": "#888f92"
42
- },
43
- "550": {
44
- "$type": "color",
45
- "$value": "#686f72"
46
- },
47
- "600": {
48
- "$type": "color",
49
- "$value": "#495054"
50
- },
51
- "650": {
52
- "$type": "color",
53
- "$value": "#3f4549"
54
- },
55
- "700": {
56
- "$type": "color",
57
- "$value": "#353b3f"
58
- },
59
- "750": {
60
- "$type": "color",
61
- "$value": "#2b3135"
62
- },
63
- "800": {
64
- "$type": "color",
65
- "$value": "#22272b"
66
- },
67
- "850": {
68
- "$type": "color",
69
- "$value": "#181c1f"
70
- },
71
- "900": {
72
- "$type": "color",
73
- "$value": "#0e1113"
74
- },
75
- "950": {
76
- "$type": "color",
77
- "$value": "#050709"
78
- }
79
- },
80
- "nsw-green": {
81
- "50": {
82
- "$type": "color",
83
- "$value": "#f5fff6"
84
- },
85
- "100": {
86
- "$type": "color",
87
- "$value": "#ecfdee"
88
- },
89
- "150": {
90
- "$type": "color",
91
- "$value": "#e4fce7"
92
- },
93
- "200": {
94
- "$type": "color",
95
- "$value": "#dbfadf"
96
- },
97
- "250": {
98
- "$type": "color",
99
- "$value": "#cff7d4"
100
- },
101
- "300": {
102
- "$type": "color",
103
- "$value": "#c2f4c9"
104
- },
105
- "350": {
106
- "$type": "color",
107
- "$value": "#b5f0be"
108
- },
109
- "400": {
110
- "$type": "color",
111
- "$value": "#a8edb3"
112
- },
113
- "450": {
114
- "$type": "color",
115
- "$value": "#8adc98"
116
- },
117
- "500": {
118
- "$type": "color",
119
- "$value": "#6acc7d"
120
- },
121
- "550": {
122
- "$type": "color",
123
- "$value": "#45bb62"
124
- },
125
- "600": {
126
- "$type": "color",
127
- "$value": "#00aa45"
128
- },
129
- "650": {
130
- "$type": "color",
131
- "$value": "#078e32"
132
- },
133
- "700": {
134
- "$type": "color",
135
- "$value": "#077320"
136
- },
137
- "750": {
138
- "$type": "color",
139
- "$value": "#03590f"
140
- },
141
- "800": {
142
- "$type": "color",
143
- "$value": "#004000"
144
- },
145
- "850": {
146
- "$type": "color",
147
- "$value": "#003000"
148
- },
149
- "900": {
150
- "$type": "color",
151
- "$value": "#002000"
152
- },
153
- "950": {
154
- "$type": "color",
155
- "$value": "#001100"
156
- }
157
- },
158
- "nsw-teal": {
159
- "50": {
160
- "$type": "color",
161
- "$value": "#f2fbfa"
162
- },
163
- "100": {
164
- "$type": "color",
165
- "$value": "#e7f7f5"
166
- },
167
- "150": {
168
- "$type": "color",
169
- "$value": "#dcf2ef"
170
- },
171
- "200": {
172
- "$type": "color",
173
- "$value": "#d1eeea"
174
- },
175
- "250": {
176
- "$type": "color",
177
- "$value": "#c1eae7"
178
- },
179
- "300": {
180
- "$type": "color",
181
- "$value": "#b0e5e5"
182
- },
183
- "350": {
184
- "$type": "color",
185
- "$value": "#9ee0e5"
186
- },
187
- "400": {
188
- "$type": "color",
189
- "$value": "#8cdbe5"
190
- },
191
- "450": {
192
- "$type": "color",
193
- "$value": "#75c4cf"
194
- },
195
- "500": {
196
- "$type": "color",
197
- "$value": "#5eacb9"
198
- },
199
- "550": {
200
- "$type": "color",
201
- "$value": "#4696a3"
202
- },
203
- "600": {
204
- "$type": "color",
205
- "$value": "#2e808e"
206
- },
207
- "650": {
208
- "$type": "color",
209
- "$value": "#256f7b"
210
- },
211
- "700": {
212
- "$type": "color",
213
- "$value": "#1c5f69"
214
- },
215
- "750": {
216
- "$type": "color",
217
- "$value": "#144e58"
218
- },
219
- "800": {
220
- "$type": "color",
221
- "$value": "#0b3f47"
222
- },
223
- "850": {
224
- "$type": "color",
225
- "$value": "#042f35"
226
- },
227
- "900": {
228
- "$type": "color",
229
- "$value": "#011f24"
230
- },
231
- "950": {
232
- "$type": "color",
233
- "$value": "#001114"
234
- }
235
- },
236
- "nsw-blue": {
237
- "50": {
238
- "$type": "color",
239
- "$value": "#f0fbff"
240
- },
241
- "100": {
242
- "$type": "color",
243
- "$value": "#e4f6ff"
244
- },
245
- "150": {
246
- "$type": "color",
247
- "$value": "#d7f2fe"
248
- },
249
- "200": {
250
- "$type": "color",
251
- "$value": "#cbedfd"
252
- },
253
- "250": {
254
- "$type": "color",
255
- "$value": "#bceafe"
256
- },
257
- "300": {
258
- "$type": "color",
259
- "$value": "#ade7ff"
260
- },
261
- "350": {
262
- "$type": "color",
263
- "$value": "#9de3ff"
264
- },
265
- "400": {
266
- "$type": "color",
267
- "$value": "#8ce0ff"
268
- },
269
- "450": {
270
- "$type": "color",
271
- "$value": "#5ac9ff"
272
- },
273
- "500": {
274
- "$type": "color",
275
- "$value": "#26aeff"
276
- },
277
- "550": {
278
- "$type": "color",
279
- "$value": "#008fff"
280
- },
281
- "600": {
282
- "$type": "color",
283
- "$value": "#146cfd"
284
- },
285
- "650": {
286
- "$type": "color",
287
- "$value": "#0c5ad4"
288
- },
289
- "700": {
290
- "$type": "color",
291
- "$value": "#0548ad"
292
- },
293
- "750": {
294
- "$type": "color",
295
- "$value": "#023688"
296
- },
297
- "800": {
298
- "$type": "color",
299
- "$value": "#002664"
300
- },
301
- "850": {
302
- "$type": "color",
303
- "$value": "#001a4d"
304
- },
305
- "900": {
306
- "$type": "color",
307
- "$value": "#001037"
308
- },
309
- "950": {
310
- "$type": "color",
311
- "$value": "#000622"
312
- }
313
- },
314
- "nsw-purple": {
315
- "50": {
316
- "$type": "color",
317
- "$value": "#f9f7ff"
318
- },
319
- "100": {
320
- "$type": "color",
321
- "$value": "#f2f0ff"
322
- },
323
- "150": {
324
- "$type": "color",
325
- "$value": "#ece8fe"
326
- },
327
- "200": {
328
- "$type": "color",
329
- "$value": "#e6e1fd"
330
- },
331
- "250": {
332
- "$type": "color",
333
- "$value": "#e0d9fe"
334
- },
335
- "300": {
336
- "$type": "color",
337
- "$value": "#dad0fe"
338
- },
339
- "350": {
340
- "$type": "color",
341
- "$value": "#d4c8ff"
342
- },
343
- "400": {
344
- "$type": "color",
345
- "$value": "#cebfff"
346
- },
347
- "450": {
348
- "$type": "color",
349
- "$value": "#baa6fc"
350
- },
351
- "500": {
352
- "$type": "color",
353
- "$value": "#a68df9"
354
- },
355
- "550": {
356
- "$type": "color",
357
- "$value": "#9372f5"
358
- },
359
- "600": {
360
- "$type": "color",
361
- "$value": "#8055f1"
362
- },
363
- "650": {
364
- "$type": "color",
365
- "$value": "#7243cf"
366
- },
367
- "700": {
368
- "$type": "color",
369
- "$value": "#6432ae"
370
- },
371
- "750": {
372
- "$type": "color",
373
- "$value": "#54218e"
374
- },
375
- "800": {
376
- "$type": "color",
377
- "$value": "#441170"
378
- },
379
- "850": {
380
- "$type": "color",
381
- "$value": "#330856"
382
- },
383
- "900": {
384
- "$type": "color",
385
- "$value": "#23023e"
386
- },
387
- "950": {
388
- "$type": "color",
389
- "$value": "#130027"
390
- }
391
- },
392
- "nsw-fuchsia": {
393
- "50": {
394
- "$type": "color",
395
- "$value": "#fff6fd"
396
- },
397
- "100": {
398
- "$type": "color",
399
- "$value": "#ffeef9"
400
- },
401
- "150": {
402
- "$type": "color",
403
- "$value": "#fee6f5"
404
- },
405
- "200": {
406
- "$type": "color",
407
- "$value": "#fddef2"
408
- },
409
- "250": {
410
- "$type": "color",
411
- "$value": "#fbd4ef"
412
- },
413
- "300": {
414
- "$type": "color",
415
- "$value": "#f9c9eb"
416
- },
417
- "350": {
418
- "$type": "color",
419
- "$value": "#f7bfe9"
420
- },
421
- "400": {
422
- "$type": "color",
423
- "$value": "#f4b5e6"
424
- },
425
- "450": {
426
- "$type": "color",
427
- "$value": "#ef96da"
428
- },
429
- "500": {
430
- "$type": "color",
431
- "$value": "#e975cc"
432
- },
433
- "550": {
434
- "$type": "color",
435
- "$value": "#e150be"
436
- },
437
- "600": {
438
- "$type": "color",
439
- "$value": "#d912ae"
440
- },
441
- "650": {
442
- "$type": "color",
443
- "$value": "#bb0c94"
444
- },
445
- "700": {
446
- "$type": "color",
447
- "$value": "#9d067b"
448
- },
449
- "750": {
450
- "$type": "color",
451
- "$value": "#810264"
452
- },
453
- "800": {
454
- "$type": "color",
455
- "$value": "#65004d"
456
- },
457
- "850": {
458
- "$type": "color",
459
- "$value": "#4d003a"
460
- },
461
- "900": {
462
- "$type": "color",
463
- "$value": "#370028"
464
- },
465
- "950": {
466
- "$type": "color",
467
- "$value": "#220017"
468
- }
469
- },
470
- "nsw-red": {
471
- "50": {
472
- "$type": "color",
473
- "$value": "#fff8f9"
474
- },
475
- "100": {
476
- "$type": "color",
477
- "$value": "#fff2f4"
478
- },
479
- "150": {
480
- "$type": "color",
481
- "$value": "#ffecef"
482
- },
483
- "200": {
484
- "$type": "color",
485
- "$value": "#ffe6ea"
486
- },
487
- "250": {
488
- "$type": "color",
489
- "$value": "#ffdbe0"
490
- },
491
- "300": {
492
- "$type": "color",
493
- "$value": "#ffcfd6"
494
- },
495
- "350": {
496
- "$type": "color",
497
- "$value": "#ffc4cc"
498
- },
499
- "400": {
500
- "$type": "color",
501
- "$value": "#ffb8c1"
502
- },
503
- "450": {
504
- "$type": "color",
505
- "$value": "#f897a2"
506
- },
507
- "500": {
508
- "$type": "color",
509
- "$value": "#ef7581"
510
- },
511
- "550": {
512
- "$type": "color",
513
- "$value": "#e44f5f"
514
- },
515
- "600": {
516
- "$type": "color",
517
- "$value": "#d7153a"
518
- },
519
- "650": {
520
- "$type": "color",
521
- "$value": "#b90e32"
522
- },
523
- "700": {
524
- "$type": "color",
525
- "$value": "#9b072a"
526
- },
527
- "750": {
528
- "$type": "color",
529
- "$value": "#7e0322"
530
- },
531
- "800": {
532
- "$type": "color",
533
- "$value": "#630019"
534
- },
535
- "850": {
536
- "$type": "color",
537
- "$value": "#4c0010"
538
- },
539
- "900": {
540
- "$type": "color",
541
- "$value": "#360008"
542
- },
543
- "950": {
544
- "$type": "color",
545
- "$value": "#210003"
546
- }
547
- },
548
- "nsw-orange": {
549
- "50": {
550
- "$type": "color",
551
- "$value": "#fffaf6"
552
- },
553
- "100": {
554
- "$type": "color",
555
- "$value": "#fff6ee"
556
- },
557
- "150": {
558
- "$type": "color",
559
- "$value": "#fef1e7"
560
- },
561
- "200": {
562
- "$type": "color",
563
- "$value": "#fdeddf"
564
- },
565
- "250": {
566
- "$type": "color",
567
- "$value": "#fee5ce"
568
- },
569
- "300": {
570
- "$type": "color",
571
- "$value": "#ffddbd"
572
- },
573
- "350": {
574
- "$type": "color",
575
- "$value": "#ffd6ab"
576
- },
577
- "400": {
578
- "$type": "color",
579
- "$value": "#ffce99"
580
- },
581
- "450": {
582
- "$type": "color",
583
- "$value": "#fdb678"
584
- },
585
- "500": {
586
- "$type": "color",
587
- "$value": "#fb9d58"
588
- },
589
- "550": {
590
- "$type": "color",
591
- "$value": "#f78139"
592
- },
593
- "600": {
594
- "$type": "color",
595
- "$value": "#f3631b"
596
- },
597
- "650": {
598
- "$type": "color",
599
- "$value": "#db5115"
600
- },
601
- "700": {
602
- "$type": "color",
603
- "$value": "#c33f0e"
604
- },
605
- "750": {
606
- "$type": "color",
607
- "$value": "#ab2e06"
608
- },
609
- "800": {
610
- "$type": "color",
611
- "$value": "#941b00"
612
- },
613
- "850": {
614
- "$type": "color",
615
- "$value": "#730f00"
616
- },
617
- "900": {
618
- "$type": "color",
619
- "$value": "#530400"
620
- },
621
- "950": {
622
- "$type": "color",
623
- "$value": "#350000"
624
- }
625
- },
626
- "nsw-yellow": {
627
- "50": {
628
- "$type": "color",
629
- "$value": "#fffcf0"
630
- },
631
- "100": {
632
- "$type": "color",
633
- "$value": "#fffae5"
634
- },
635
- "150": {
636
- "$type": "color",
637
- "$value": "#fff7da"
638
- },
639
- "200": {
640
- "$type": "color",
641
- "$value": "#fff4cf"
642
- },
643
- "250": {
644
- "$type": "color",
645
- "$value": "#fff1c2"
646
- },
647
- "300": {
648
- "$type": "color",
649
- "$value": "#feeeb5"
650
- },
651
- "350": {
652
- "$type": "color",
653
- "$value": "#feeaa8"
654
- },
655
- "400": {
656
- "$type": "color",
657
- "$value": "#fde79a"
658
- },
659
- "450": {
660
- "$type": "color",
661
- "$value": "#fbda80"
662
- },
663
- "500": {
664
- "$type": "color",
665
- "$value": "#facd63"
666
- },
667
- "550": {
668
- "$type": "color",
669
- "$value": "#fabe42"
670
- },
671
- "600": {
672
- "$type": "color",
673
- "$value": "#faaf05"
674
- },
675
- "650": {
676
- "$type": "color",
677
- "$value": "#d49402"
678
- },
679
- "700": {
680
- "$type": "color",
681
- "$value": "#af7a01"
682
- },
683
- "750": {
684
- "$type": "color",
685
- "$value": "#8b6000"
686
- },
687
- "800": {
688
- "$type": "color",
689
- "$value": "#694800"
690
- },
691
- "850": {
692
- "$type": "color",
693
- "$value": "#503500"
694
- },
695
- "900": {
696
- "$type": "color",
697
- "$value": "#392400"
698
- },
699
- "950": {
700
- "$type": "color",
701
- "$value": "#221300"
702
- }
703
- },
704
- "nsw-brown": {
705
- "50": {
706
- "$type": "color",
707
- "$value": "#fbf8f4"
708
- },
709
- "100": {
710
- "$type": "color",
711
- "$value": "#f6f1ea"
712
- },
713
- "150": {
714
- "$type": "color",
715
- "$value": "#f2eae1"
716
- },
717
- "200": {
718
- "$type": "color",
719
- "$value": "#ede3d7"
720
- },
721
- "250": {
722
- "$type": "color",
723
- "$value": "#ecdece"
724
- },
725
- "300": {
726
- "$type": "color",
727
- "$value": "#eadac6"
728
- },
729
- "350": {
730
- "$type": "color",
731
- "$value": "#e9d5bd"
732
- },
733
- "400": {
734
- "$type": "color",
735
- "$value": "#e8d0b5"
736
- },
737
- "450": {
738
- "$type": "color",
739
- "$value": "#dbbf9f"
740
- },
741
- "500": {
742
- "$type": "color",
743
- "$value": "#cfae89"
744
- },
745
- "550": {
746
- "$type": "color",
747
- "$value": "#c29d73"
748
- },
749
- "600": {
750
- "$type": "color",
751
- "$value": "#b68d5d"
752
- },
753
- "650": {
754
- "$type": "color",
755
- "$value": "#9c764b"
756
- },
757
- "700": {
758
- "$type": "color",
759
- "$value": "#82603a"
760
- },
761
- "750": {
762
- "$type": "color",
763
- "$value": "#6a4b29"
764
- },
765
- "800": {
766
- "$type": "color",
767
- "$value": "#523719"
768
- },
769
- "850": {
770
- "$type": "color",
771
- "$value": "#3e280f"
772
- },
773
- "900": {
774
- "$type": "color",
775
- "$value": "#2b1a07"
776
- },
777
- "950": {
778
- "$type": "color",
779
- "$value": "#190d02"
780
- }
781
- }
782
- }