@nswds/tokens 2.5.0 → 2.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.
Files changed (120) hide show
  1. package/dist/css/colors/global/hex.css +158 -6
  2. package/dist/css/colors/global/hsl.css +297 -145
  3. package/dist/css/colors/global/oklch.css +342 -190
  4. package/dist/css/colors/global/rgb.css +158 -6
  5. package/dist/css/colors/themes/masterbrand/hex.css +56 -0
  6. package/dist/css/colors/themes/masterbrand/hsl.css +56 -0
  7. package/dist/css/colors/themes/masterbrand/oklch.css +56 -0
  8. package/dist/css/colors/themes/masterbrand/rgb.css +56 -0
  9. package/dist/figma/global/color/hex.json +1406 -0
  10. package/dist/figma/global/color/hsl.json +2774 -0
  11. package/dist/figma/global/color/oklch.json +2774 -0
  12. package/dist/figma/global/color/rgb.json +2774 -0
  13. package/dist/figma/themes/masterbrand/color/hex.json +226 -0
  14. package/dist/figma/themes/masterbrand/color/hsl.json +450 -0
  15. package/dist/figma/themes/masterbrand/color/oklch.json +450 -0
  16. package/dist/figma/themes/masterbrand/color/rgb.json +450 -0
  17. package/dist/index.cjs +9722 -2185
  18. package/dist/index.cjs.map +1 -1
  19. package/dist/index.d.cts +1485 -130
  20. package/dist/index.d.ts +1485 -130
  21. package/dist/index.js +9722 -2185
  22. package/dist/index.js.map +1 -1
  23. package/dist/js/colors/global/hex.js +174 -6
  24. package/dist/js/colors/global/hsl.js +313 -145
  25. package/dist/js/colors/global/oklch.js +358 -190
  26. package/dist/js/colors/global/rgb.js +174 -6
  27. package/dist/js/colors/themes/masterbrand/hsl.js +35 -35
  28. package/dist/js/colors/themes/masterbrand/oklch.js +56 -56
  29. package/dist/json/colors/global/hex.json +380 -1
  30. package/dist/json/colors/global/hsl.json +380 -1
  31. package/dist/json/colors/global/oklch.json +380 -1
  32. package/dist/json/colors/global/rgb.json +380 -1
  33. package/dist/json/colors/themes/masterbrand/hex.json +74 -1
  34. package/dist/json/colors/themes/masterbrand/hsl.json +74 -1
  35. package/dist/json/colors/themes/masterbrand/oklch.json +74 -1
  36. package/dist/json/colors/themes/masterbrand/rgb.json +74 -1
  37. package/dist/less/colors/global/hex.less +342 -0
  38. package/dist/less/colors/global/hsl.less +342 -0
  39. package/dist/less/colors/global/oklch.less +342 -0
  40. package/dist/less/colors/global/rgb.less +342 -0
  41. package/dist/less/colors/themes/masterbrand/hex.less +56 -0
  42. package/dist/less/colors/themes/masterbrand/hsl.less +56 -0
  43. package/dist/less/colors/themes/masterbrand/oklch.less +56 -0
  44. package/dist/less/colors/themes/masterbrand/rgb.less +56 -0
  45. package/dist/scss/colors/global/hex.scss +158 -6
  46. package/dist/scss/colors/global/hsl.scss +297 -145
  47. package/dist/scss/colors/global/oklch.scss +342 -190
  48. package/dist/scss/colors/global/rgb.scss +158 -6
  49. package/dist/scss/colors/themes/masterbrand/hsl.scss +35 -35
  50. package/dist/scss/colors/themes/masterbrand/oklch.scss +56 -56
  51. package/dist/tailwind/colors/global/hex.css +158 -6
  52. package/dist/tailwind/colors/global/hsl.css +297 -145
  53. package/dist/tailwind/colors/global/oklch.css +490 -190
  54. package/dist/tailwind/colors/global/rgb.css +158 -6
  55. package/dist/tailwind/colors/themes/masterbrand/hsl.css +35 -35
  56. package/dist/tailwind/colors/themes/masterbrand/oklch.css +56 -56
  57. package/dist/ts/colors/global/hex.ts +174 -6
  58. package/dist/ts/colors/global/hsl.ts +313 -145
  59. package/dist/ts/colors/global/oklch.ts +358 -190
  60. package/dist/ts/colors/global/rgb.ts +174 -6
  61. package/dist/ts/colors/themes/masterbrand/hsl.ts +35 -35
  62. package/dist/ts/colors/themes/masterbrand/oklch.ts +56 -56
  63. package/package.json +1 -1
  64. package/src/css/colors/global/hex.css +158 -6
  65. package/src/css/colors/global/hsl.css +297 -145
  66. package/src/css/colors/global/oklch.css +342 -190
  67. package/src/css/colors/global/rgb.css +158 -6
  68. package/src/css/colors/themes/masterbrand/hex.css +56 -0
  69. package/src/css/colors/themes/masterbrand/hsl.css +56 -0
  70. package/src/css/colors/themes/masterbrand/oklch.css +56 -0
  71. package/src/css/colors/themes/masterbrand/rgb.css +56 -0
  72. package/src/figma/global/color/hex.json +1406 -0
  73. package/src/figma/global/color/hsl.json +2774 -0
  74. package/src/figma/global/color/oklch.json +2774 -0
  75. package/src/figma/global/color/rgb.json +2774 -0
  76. package/src/figma/themes/masterbrand/color/hex.json +226 -0
  77. package/src/figma/themes/masterbrand/color/hsl.json +450 -0
  78. package/src/figma/themes/masterbrand/color/oklch.json +450 -0
  79. package/src/figma/themes/masterbrand/color/rgb.json +450 -0
  80. package/src/index.ts +3 -0
  81. package/src/js/colors/global/hex.js +174 -6
  82. package/src/js/colors/global/hsl.js +313 -145
  83. package/src/js/colors/global/oklch.js +358 -190
  84. package/src/js/colors/global/rgb.js +174 -6
  85. package/src/js/colors/themes/masterbrand/hsl.js +35 -35
  86. package/src/js/colors/themes/masterbrand/oklch.js +56 -56
  87. package/src/json/colors/global/hex.json +380 -1
  88. package/src/json/colors/global/hsl.json +380 -1
  89. package/src/json/colors/global/oklch.json +380 -1
  90. package/src/json/colors/global/rgb.json +380 -1
  91. package/src/json/colors/themes/masterbrand/hex.json +74 -1
  92. package/src/json/colors/themes/masterbrand/hsl.json +74 -1
  93. package/src/json/colors/themes/masterbrand/oklch.json +74 -1
  94. package/src/json/colors/themes/masterbrand/rgb.json +74 -1
  95. package/src/less/colors/global/hex.less +342 -0
  96. package/src/less/colors/global/hsl.less +342 -0
  97. package/src/less/colors/global/oklch.less +342 -0
  98. package/src/less/colors/global/rgb.less +342 -0
  99. package/src/less/colors/themes/masterbrand/hex.less +56 -0
  100. package/src/less/colors/themes/masterbrand/hsl.less +56 -0
  101. package/src/less/colors/themes/masterbrand/oklch.less +56 -0
  102. package/src/less/colors/themes/masterbrand/rgb.less +56 -0
  103. package/src/scss/colors/global/hex.scss +158 -6
  104. package/src/scss/colors/global/hsl.scss +297 -145
  105. package/src/scss/colors/global/oklch.scss +342 -190
  106. package/src/scss/colors/global/rgb.scss +158 -6
  107. package/src/scss/colors/themes/masterbrand/hsl.scss +35 -35
  108. package/src/scss/colors/themes/masterbrand/oklch.scss +56 -56
  109. package/src/tailwind/colors/global/hex.css +158 -6
  110. package/src/tailwind/colors/global/hsl.css +297 -145
  111. package/src/tailwind/colors/global/oklch.css +490 -190
  112. package/src/tailwind/colors/global/rgb.css +158 -6
  113. package/src/tailwind/colors/themes/masterbrand/hsl.css +35 -35
  114. package/src/tailwind/colors/themes/masterbrand/oklch.css +56 -56
  115. package/src/ts/colors/global/hex.ts +174 -6
  116. package/src/ts/colors/global/hsl.ts +313 -145
  117. package/src/ts/colors/global/oklch.ts +358 -190
  118. package/src/ts/colors/global/rgb.ts +174 -6
  119. package/src/ts/colors/themes/masterbrand/hsl.ts +35 -35
  120. package/src/ts/colors/themes/masterbrand/oklch.ts +56 -56
@@ -0,0 +1,342 @@
1
+ @nsw-grey-50: hsl(223.81, 0%, 98.03%);
2
+ @nsw-grey-100: hsl(223.81, 0%, 96.06%);
3
+ @nsw-grey-150: hsl(223.81, 0%, 94.11%);
4
+ @nsw-grey-200: hsl(223.81, 0%, 92.16%);
5
+ @nsw-grey-250: hsl(200.05, 4.31%, 89.64%);
6
+ @nsw-grey-300: hsl(200.03, 6.92%, 87.13%);
7
+ @nsw-grey-350: hsl(200.02, 8.65%, 84.64%);
8
+ @nsw-grey-400: hsl(200, 9.89%, 82.16%);
9
+ @nsw-grey-450: hsl(200.47, 6.03%, 68.52%);
10
+ @nsw-grey-500: hsl(200.94, 4.51%, 55.36%);
11
+ @nsw-grey-550: hsl(201.39, 4.91%, 42.76%);
12
+ @nsw-grey-600: hsl(201.82, 7.01%, 30.78%);
13
+ @nsw-grey-650: hsl(203.03, 7.74%, 26.71%);
14
+ @nsw-grey-700: hsl(204.24, 8.68%, 22.73%);
15
+ @nsw-grey-750: hsl(205.45, 9.93%, 18.85%);
16
+ @nsw-grey-800: hsl(206.67, 11.69%, 15.1%);
17
+ @nsw-grey-850: hsl(206.66, 13.37%, 10.7%);
18
+ @nsw-grey-900: hsl(206.64, 17.01%, 6.52%);
19
+ @nsw-grey-950: hsl(208.68, 23.47%, 2.8%);
20
+ @nsw-green-50: hsl(126.92, 92.48%, 97.87%);
21
+ @nsw-green-100: hsl(127.18, 81.76%, 95.93%);
22
+ @nsw-green-150: hsl(127.45, 77.77%, 93.96%);
23
+ @nsw-green-200: hsl(127.74, 75.61%, 91.96%);
24
+ @nsw-green-250: hsl(128.12, 71.21%, 88.91%);
25
+ @nsw-green-300: hsl(128.55, 68.62%, 85.81%);
26
+ @nsw-green-350: hsl(129.02, 66.91%, 82.65%);
27
+ @nsw-green-400: hsl(129.57, 65.71%, 79.41%);
28
+ @nsw-green-450: hsl(130.48, 54.36%, 70.18%);
29
+ @nsw-green-500: hsl(131.91, 48.76%, 60.63%);
30
+ @nsw-green-550: hsl(134.54, 46.29%, 50.21%);
31
+ @nsw-green-600: hsl(144.35, 100%, 33.33%);
32
+ @nsw-green-650: hsl(139.28, 90.98%, 29.11%);
33
+ @nsw-green-700: hsl(134.23, 89.08%, 23.77%);
34
+ @nsw-green-750: hsl(127.99, 92.45%, 18.06%);
35
+ @nsw-green-800: hsl(120, 100%, 12.55%);
36
+ @nsw-green-850: hsl(120.41, 100%, 8.99%);
37
+ @nsw-green-900: hsl(120.77, 100%, 5.85%);
38
+ @nsw-green-950: hsl(121.17, 100%, 3.07%);
39
+ @nsw-teal-50: hsl(171.22, 56.11%, 96.73%);
40
+ @nsw-teal-100: hsl(171.38, 49.48%, 93.72%);
41
+ @nsw-teal-150: hsl(171.55, 47.18%, 90.69%);
42
+ @nsw-teal-200: hsl(171.72, 46.03%, 87.65%);
43
+ @nsw-teal-250: hsl(176, 49.12%, 83.57%);
44
+ @nsw-teal-300: hsl(180.06, 50.95%, 79.35%);
45
+ @nsw-teal-350: hsl(183.68, 57.18%, 75.79%);
46
+ @nsw-teal-400: hsl(186.74, 63.12%, 72.35%);
47
+ @nsw-teal-450: hsl(187.41, 48.14%, 63.4%);
48
+ @nsw-teal-500: hsl(188, 39.25%, 54.56%);
49
+ @nsw-teal-550: hsl(188.48, 39.69%, 45.78%);
50
+ @nsw-teal-600: hsl(188.75, 51.06%, 36.86%);
51
+ @nsw-teal-650: hsl(188.61, 53.88%, 31.46%);
52
+ @nsw-teal-700: hsl(188.45, 57.8%, 26.19%);
53
+ @nsw-teal-750: hsl(188.26, 63.6%, 21.07%);
54
+ @nsw-teal-800: hsl(188, 73.17%, 16.08%);
55
+ @nsw-teal-850: hsl(187.99, 84.92%, 11.28%);
56
+ @nsw-teal-900: hsl(188.56, 96.03%, 7.26%);
57
+ @nsw-teal-950: hsl(190.58, 100%, 3.88%);
58
+ @nsw-blue-50: hsl(199.45, 100%, 97.34%);
59
+ @nsw-blue-100: hsl(199.38, 100%, 94.73%);
60
+ @nsw-blue-150: hsl(199.3, 95.85%, 92.09%);
61
+ @nsw-blue-200: hsl(199.2, 92.59%, 89.41%);
62
+ @nsw-blue-250: hsl(198.5, 96.87%, 86.75%);
63
+ @nsw-blue-300: hsl(197.76, 98.99%, 83.89%);
64
+ @nsw-blue-350: hsl(197, 99.87%, 80.82%);
65
+ @nsw-blue-400: hsl(196.17, 100%, 77.45%);
66
+ @nsw-blue-450: hsl(199.74, 99.83%, 67.57%);
67
+ @nsw-blue-500: hsl(202.52, 100%, 57.55%);
68
+ @nsw-blue-550: hsl(204.76, 100%, 46.97%);
69
+ @nsw-blue-600: hsl(217.34, 98.31%, 53.53%);
70
+ @nsw-blue-650: hsl(216.77, 89.43%, 43.98%);
71
+ @nsw-blue-700: hsl(216.29, 94.14%, 35%);
72
+ @nsw-blue-750: hsl(216.37, 97.67%, 26.93%);
73
+ @nsw-blue-800: hsl(217.2, 100%, 19.61%);
74
+ @nsw-blue-850: hsl(218.95, 100%, 14.93%);
75
+ @nsw-blue-900: hsl(222.31, 100%, 10.59%);
76
+ @nsw-blue-950: hsl(228.65, 100%, 6.6%);
77
+ @nsw-purple-50: hsl(250, 100%, 98.76%);
78
+ @nsw-purple-100: hsl(250.23, 100%, 97.09%);
79
+ @nsw-purple-150: hsl(250.47, 93.41%, 95.41%);
80
+ @nsw-purple-200: hsl(250.71, 87.5%, 93.73%);
81
+ @nsw-purple-250: hsl(251.53, 93.83%, 92.23%);
82
+ @nsw-purple-300: hsl(252.35, 97.33%, 90.69%);
83
+ @nsw-purple-350: hsl(253.2, 99.18%, 89.09%);
84
+ @nsw-purple-400: hsl(254.06, 100%, 87.45%);
85
+ @nsw-purple-450: hsl(253.9, 94.13%, 82.01%);
86
+ @nsw-purple-500: hsl(254.11, 90.14%, 76.39%);
87
+ @nsw-purple-550: hsl(254.88, 87.11%, 70.46%);
88
+ @nsw-purple-600: hsl(256.54, 84.78%, 63.92%);
89
+ @nsw-purple-650: hsl(260.32, 59.17%, 53.67%);
90
+ @nsw-purple-700: hsl(264.12, 55.46%, 43.83%);
91
+ @nsw-purple-750: hsl(268.02, 62.04%, 34.39%);
92
+ @nsw-purple-800: hsl(272.21, 73.64%, 25.29%);
93
+ @nsw-purple-850: hsl(272.75, 82.69%, 18.56%);
94
+ @nsw-purple-900: hsl(272.45, 92.77%, 12.64%);
95
+ @nsw-purple-950: hsl(269.95, 100%, 7.66%);
96
+ @nsw-fuchsia-50: hsl(322.15, 100%, 98.49%);
97
+ @nsw-fuchsia-100: hsl(321.87, 100%, 96.73%);
98
+ @nsw-fuchsia-150: hsl(321.58, 93.98%, 94.94%);
99
+ @nsw-fuchsia-200: hsl(321.29, 88.57%, 93.14%);
100
+ @nsw-fuchsia-250: hsl(319.35, 84.42%, 90.79%);
101
+ @nsw-fuchsia-300: hsl(317.38, 80.69%, 88.38%);
102
+ @nsw-fuchsia-350: hsl(315.37, 77.28%, 85.89%);
103
+ @nsw-fuchsia-400: hsl(313.33, 74.12%, 83.33%);
104
+ @nsw-fuchsia-450: hsl(314.16, 73.33%, 76.26%);
105
+ @nsw-fuchsia-500: hsl(314.67, 72.14%, 68.62%);
106
+ @nsw-fuchsia-550: hsl(314.69, 71.13%, 59.86%);
107
+ @nsw-fuchsia-600: hsl(312.96, 84.68%, 46.08%);
108
+ @nsw-fuchsia-650: hsl(313.17, 88.39%, 38.86%);
109
+ @nsw-fuchsia-700: hsl(313.38, 92.9%, 31.95%);
110
+ @nsw-fuchsia-750: hsl(313.72, 96.8%, 25.62%);
111
+ @nsw-fuchsia-800: hsl(314.26, 100%, 19.8%);
112
+ @nsw-fuchsia-850: hsl(314.51, 100%, 14.68%);
113
+ @nsw-fuchsia-900: hsl(315.33, 100%, 10.15%);
114
+ @nsw-fuchsia-950: hsl(317.48, 100%, 6.11%);
115
+ @nsw-red-50: hsl(350.85, 100%, 98.97%);
116
+ @nsw-red-100: hsl(350.7, 100%, 97.7%);
117
+ @nsw-red-150: hsl(350.55, 100%, 96.41%);
118
+ @nsw-red-200: hsl(350.4, 100%, 95.1%);
119
+ @nsw-red-250: hsl(350.92, 100%, 92.94%);
120
+ @nsw-red-300: hsl(351.43, 100%, 90.72%);
121
+ @nsw-red-350: hsl(351.92, 100%, 88.44%);
122
+ @nsw-red-400: hsl(352.39, 100%, 86.08%);
123
+ @nsw-red-450: hsl(353.39, 86.96%, 78.18%);
124
+ @nsw-red-500: hsl(353.95, 78.84%, 69.69%);
125
+ @nsw-red-550: hsl(353.52, 73.17%, 60.13%);
126
+ @nsw-red-600: hsl(348.56, 82.2%, 46.27%);
127
+ @nsw-red-650: hsl(347.26, 85.91%, 38.92%);
128
+ @nsw-red-700: hsl(345.89, 91%, 31.81%);
129
+ @nsw-red-750: hsl(345, 95.87%, 25.31%);
130
+ @nsw-red-800: hsl(344.85, 100%, 19.41%);
131
+ @nsw-red-850: hsl(346.11, 100%, 14.46%);
132
+ @nsw-red-900: hsl(349.15, 100%, 10.03%);
133
+ @nsw-red-950: hsl(352.16, 100%, 6.06%);
134
+ @nsw-orange-50: hsl(27.87, 100%, 98.29%);
135
+ @nsw-orange-100: hsl(27.91, 96.98%, 96.64%);
136
+ @nsw-orange-150: hsl(27.96, 91.29%, 94.99%);
137
+ @nsw-orange-200: hsl(28, 88.24%, 93.33%);
138
+ @nsw-orange-250: hsl(28.75, 96.77%, 90.26%);
139
+ @nsw-orange-300: hsl(29.52, 99.73%, 87.03%);
140
+ @nsw-orange-350: hsl(30.32, 100%, 83.62%);
141
+ @nsw-orange-400: hsl(31.18, 100%, 80%);
142
+ @nsw-orange-450: hsl(28.25, 96.8%, 73.02%);
143
+ @nsw-orange-500: hsl(25.48, 94.77%, 66.34%);
144
+ @nsw-orange-550: hsl(22.75, 92.62%, 59.79%);
145
+ @nsw-orange-600: hsl(20, 90%, 52.94%);
146
+ @nsw-orange-650: hsl(18.26, 82.63%, 47%);
147
+ @nsw-orange-700: hsl(16.43, 86.72%, 40.94%);
148
+ @nsw-orange-750: hsl(14.39, 93.12%, 34.79%);
149
+ @nsw-orange-800: hsl(10.95, 100%, 29.02%);
150
+ @nsw-orange-850: hsl(9.09, 100%, 21.91%);
151
+ @nsw-orange-900: hsl(5.29, 100%, 15.58%);
152
+ @nsw-orange-950: hsl(2.01, 100%, 9.91%);
153
+ @nsw-yellow-50: hsl(46.46, 100%, 97.31%);
154
+ @nsw-yellow-100: hsl(46.38, 100%, 95.09%);
155
+ @nsw-yellow-150: hsl(46.31, 100%, 92.85%);
156
+ @nsw-yellow-200: hsl(46.25, 100%, 90.59%);
157
+ @nsw-yellow-250: hsl(46.33, 98.56%, 88%);
158
+ @nsw-yellow-300: hsl(46.42, 97.54%, 85.35%);
159
+ @nsw-yellow-350: hsl(46.53, 96.75%, 82.62%);
160
+ @nsw-yellow-400: hsl(46.67, 96.12%, 79.8%);
161
+ @nsw-yellow-450: hsl(43.95, 94.26%, 74.28%);
162
+ @nsw-yellow-500: hsl(41.83, 94.17%, 68.55%);
163
+ @nsw-yellow-550: hsl(40.46, 94.83%, 62.04%);
164
+ @nsw-yellow-600: hsl(41.63, 96.08%, 50%);
165
+ @nsw-yellow-650: hsl(41.71, 97.59%, 41.99%);
166
+ @nsw-yellow-700: hsl(41.69, 98.72%, 34.44%);
167
+ @nsw-yellow-750: hsl(41.53, 99.5%, 27.31%);
168
+ @nsw-yellow-800: hsl(41.14, 100%, 20.59%);
169
+ @nsw-yellow-850: hsl(40.68, 100%, 15.12%);
170
+ @nsw-yellow-900: hsl(39.24, 100%, 10.36%);
171
+ @nsw-yellow-950: hsl(35.52, 100%, 6.19%);
172
+ @nsw-brown-50: hsl(32.66, 48.5%, 97.07%);
173
+ @nsw-brown-100: hsl(32.68, 41.61%, 94.25%);
174
+ @nsw-brown-150: hsl(32.7, 39.2%, 91.43%);
175
+ @nsw-brown-200: hsl(32.73, 37.93%, 88.63%);
176
+ @nsw-brown-250: hsl(32.47, 43.13%, 86.7%);
177
+ @nsw-brown-300: hsl(32.23, 47.04%, 84.79%);
178
+ @nsw-brown-350: hsl(31.99, 50.11%, 82.88%);
179
+ @nsw-brown-400: hsl(31.76, 52.58%, 80.98%);
180
+ @nsw-brown-450: hsl(31.83, 46.02%, 74.17%);
181
+ @nsw-brown-500: hsl(31.93, 42.16%, 67.4%);
182
+ @nsw-brown-550: hsl(32.1, 39.63%, 60.67%);
183
+ @nsw-brown-600: hsl(32.36, 37.87%, 53.92%);
184
+ @nsw-brown-650: hsl(32.04, 34.94%, 45.3%);
185
+ @nsw-brown-700: hsl(31.77, 38.54%, 36.92%);
186
+ @nsw-brown-750: hsl(31.59, 43.99%, 28.81%);
187
+ @nsw-brown-800: hsl(31.58, 53.27%, 20.98%);
188
+ @nsw-brown-850: hsl(31.74, 60.03%, 15.18%);
189
+ @nsw-brown-900: hsl(31.73, 72.62%, 9.74%);
190
+ @nsw-brown-950: hsl(27.95, 86.11%, 5.27%);
191
+ @nsw-aboriginal-grey-50: hsl(35.99, 11.4%, 97.16%);
192
+ @nsw-aboriginal-grey-100: hsl(36, 9.67%, 94.37%);
193
+ @nsw-aboriginal-grey-150: hsl(36, 9.08%, 91.59%);
194
+ @nsw-aboriginal-grey-200: hsl(36, 8.77%, 88.82%);
195
+ @nsw-aboriginal-grey-250: hsl(32.79, 8.86%, 86.06%);
196
+ @nsw-aboriginal-grey-300: hsl(29.76, 8.93%, 83.34%);
197
+ @nsw-aboriginal-grey-350: hsl(26.85, 8.96%, 80.67%);
198
+ @nsw-aboriginal-grey-400: hsl(24, 8.93%, 78.04%);
199
+ @nsw-aboriginal-grey-450: hsl(23.99, 4.23%, 66.26%);
200
+ @nsw-aboriginal-grey-500: hsl(23.97, 2.04%, 54.85%);
201
+ @nsw-aboriginal-grey-550: hsl(23.95, 1.01%, 43.86%);
202
+ @nsw-aboriginal-grey-600: hsl(223.81, 0%, 33.33%);
203
+ @nsw-aboriginal-grey-650: hsl(223.81, 0%, 29.26%);
204
+ @nsw-aboriginal-grey-700: hsl(223.81, 0%, 25.29%);
205
+ @nsw-aboriginal-grey-750: hsl(223.81, 0%, 21.41%);
206
+ @nsw-aboriginal-grey-800: hsl(223.81, 0%, 17.65%);
207
+ @nsw-aboriginal-grey-850: hsl(223.81, 0%, 12.7%);
208
+ @nsw-aboriginal-grey-900: hsl(223.81, 0%, 8.01%);
209
+ @nsw-aboriginal-grey-950: hsl(223.81, 0%, 3.63%);
210
+ @nsw-aboriginal-red-50: hsl(0.45, 100%, 98.34%);
211
+ @nsw-aboriginal-red-100: hsl(0.31, 100%, 96.31%);
212
+ @nsw-aboriginal-red-150: hsl(0.16, 96.42%, 94.24%);
213
+ @nsw-aboriginal-red-200: hsl(360, 90%, 92.16%);
214
+ @nsw-aboriginal-red-250: hsl(0.23, 91.24%, 90.28%);
215
+ @nsw-aboriginal-red-300: hsl(0.45, 91.36%, 88.35%);
216
+ @nsw-aboriginal-red-350: hsl(0.65, 90.86%, 86.36%);
217
+ @nsw-aboriginal-red-400: hsl(0.83, 90%, 84.31%);
218
+ @nsw-aboriginal-red-450: hsl(1.95, 86.73%, 77.32%);
219
+ @nsw-aboriginal-red-500: hsl(2.8, 82.84%, 69.6%);
220
+ @nsw-aboriginal-red-550: hsl(3.23, 79.15%, 60.92%);
221
+ @nsw-aboriginal-red-600: hsl(3.05, 77.87%, 49.61%);
222
+ @nsw-aboriginal-red-650: hsl(2.8, 80.26%, 44.7%);
223
+ @nsw-aboriginal-red-700: hsl(2.5, 83.29%, 39.86%);
224
+ @nsw-aboriginal-red-750: hsl(2.1, 87.31%, 35.06%);
225
+ @nsw-aboriginal-red-800: hsl(1.26, 92.26%, 30.39%);
226
+ @nsw-aboriginal-red-850: hsl(359.74, 99.82%, 22.68%);
227
+ @nsw-aboriginal-red-900: hsl(358.63, 100%, 15.69%);
228
+ @nsw-aboriginal-red-950: hsl(357.82, 100%, 9.76%);
229
+ @nsw-aboriginal-orange-50: hsl(22.11, 100%, 96.57%);
230
+ @nsw-aboriginal-orange-100: hsl(22.19, 93.98%, 93.1%);
231
+ @nsw-aboriginal-orange-150: hsl(22.28, 87.05%, 89.61%);
232
+ @nsw-aboriginal-orange-200: hsl(22.37, 83.1%, 86.08%);
233
+ @nsw-aboriginal-orange-250: hsl(22.42, 84.33%, 82.75%);
234
+ @nsw-aboriginal-orange-300: hsl(22.48, 84.74%, 79.37%);
235
+ @nsw-aboriginal-orange-350: hsl(22.56, 84.7%, 75.91%);
236
+ @nsw-aboriginal-orange-400: hsl(22.69, 84.4%, 72.35%);
237
+ @nsw-aboriginal-orange-450: hsl(21.88, 85.61%, 67.77%);
238
+ @nsw-aboriginal-orange-500: hsl(21.18, 86.15%, 63.01%);
239
+ @nsw-aboriginal-orange-550: hsl(20.78, 86.28%, 57.76%);
240
+ @nsw-aboriginal-orange-600: hsl(21.74, 86.51%, 50.59%);
241
+ @nsw-aboriginal-orange-650: hsl(20.61, 86.17%, 44.61%);
242
+ @nsw-aboriginal-orange-700: hsl(19.56, 89.48%, 38.49%);
243
+ @nsw-aboriginal-orange-750: hsl(18.46, 94.45%, 32.41%);
244
+ @nsw-aboriginal-orange-800: hsl(16.76, 100%, 26.67%);
245
+ @nsw-aboriginal-orange-850: hsl(15.47, 100%, 20.07%);
246
+ @nsw-aboriginal-orange-900: hsl(12.18, 100%, 14.2%);
247
+ @nsw-aboriginal-orange-950: hsl(6.72, 100%, 8.94%);
248
+ @nsw-aboriginal-brown-50: hsl(23.71, 74.46%, 95.12%);
249
+ @nsw-aboriginal-brown-100: hsl(23.8, 62.46%, 90.28%);
250
+ @nsw-aboriginal-brown-150: hsl(23.89, 58.05%, 85.44%);
251
+ @nsw-aboriginal-brown-200: hsl(24, 55.56%, 80.59%);
252
+ @nsw-aboriginal-brown-250: hsl(23.94, 55.92%, 75.8%);
253
+ @nsw-aboriginal-brown-300: hsl(23.91, 55.95%, 70.98%);
254
+ @nsw-aboriginal-brown-350: hsl(23.92, 55.79%, 66.12%);
255
+ @nsw-aboriginal-brown-400: hsl(24, 55.56%, 61.18%);
256
+ @nsw-aboriginal-brown-450: hsl(22.67, 49.07%, 55.96%);
257
+ @nsw-aboriginal-brown-500: hsl(21.29, 43.84%, 50.82%);
258
+ @nsw-aboriginal-brown-550: hsl(19.86, 46.79%, 45.77%);
259
+ @nsw-aboriginal-brown-600: hsl(18.33, 51.92%, 40.78%);
260
+ @nsw-aboriginal-brown-650: hsl(18.72, 56.45%, 34.86%);
261
+ @nsw-aboriginal-brown-700: hsl(19.21, 62.79%, 29.04%);
262
+ @nsw-aboriginal-brown-750: hsl(19.97, 72.56%, 23.3%);
263
+ @nsw-aboriginal-brown-800: hsl(21, 88.89%, 17.65%);
264
+ @nsw-aboriginal-brown-850: hsl(19.73, 95.19%, 12.97%);
265
+ @nsw-aboriginal-brown-900: hsl(16.27, 100%, 8.82%);
266
+ @nsw-aboriginal-brown-950: hsl(10.45, 100%, 5.14%);
267
+ @nsw-aboriginal-yellow-50: hsl(45.72, 100%, 96.78%);
268
+ @nsw-aboriginal-yellow-100: hsl(45.63, 100%, 94.1%);
269
+ @nsw-aboriginal-yellow-150: hsl(45.57, 100%, 91.38%);
270
+ @nsw-aboriginal-yellow-200: hsl(45.52, 100%, 88.63%);
271
+ @nsw-aboriginal-yellow-250: hsl(45.68, 99.59%, 85.94%);
272
+ @nsw-aboriginal-yellow-300: hsl(45.86, 99.15%, 83.16%);
273
+ @nsw-aboriginal-yellow-350: hsl(46.07, 98.71%, 80.28%);
274
+ @nsw-aboriginal-yellow-400: hsl(46.32, 98.28%, 77.25%);
275
+ @nsw-aboriginal-yellow-450: hsl(42.77, 97.91%, 72.64%);
276
+ @nsw-aboriginal-yellow-500: hsl(39.92, 98.26%, 68.02%);
277
+ @nsw-aboriginal-yellow-550: hsl(37.69, 98.75%, 63.17%);
278
+ @nsw-aboriginal-yellow-600: hsl(36.28, 99.08%, 57.45%);
279
+ @nsw-aboriginal-yellow-650: hsl(37.45, 77.64%, 49.26%);
280
+ @nsw-aboriginal-yellow-700: hsl(38.69, 83.35%, 41.35%);
281
+ @nsw-aboriginal-yellow-750: hsl(40.07, 91.76%, 33.66%);
282
+ @nsw-aboriginal-yellow-800: hsl(41.17, 100%, 26.86%);
283
+ @nsw-aboriginal-yellow-850: hsl(41.1, 100%, 19.64%);
284
+ @nsw-aboriginal-yellow-900: hsl(40.13, 100%, 13.55%);
285
+ @nsw-aboriginal-yellow-950: hsl(37.35, 100%, 8.33%);
286
+ @nsw-aboriginal-green-50: hsl(94.61, 37.03%, 96.34%);
287
+ @nsw-aboriginal-green-100: hsl(94.51, 32.21%, 92.9%);
288
+ @nsw-aboriginal-green-150: hsl(94.4, 30.49%, 89.48%);
289
+ @nsw-aboriginal-green-200: hsl(94.29, 29.58%, 86.08%);
290
+ @nsw-aboriginal-green-250: hsl(94.5, 29.43%, 82.62%);
291
+ @nsw-aboriginal-green-300: hsl(94.72, 29.3%, 79.18%);
292
+ @nsw-aboriginal-green-350: hsl(94.92, 29.18%, 75.76%);
293
+ @nsw-aboriginal-green-400: hsl(95.12, 29.08%, 72.35%);
294
+ @nsw-aboriginal-green-450: hsl(93.46, 30.08%, 65.88%);
295
+ @nsw-aboriginal-green-500: hsl(91.63, 30.85%, 59.29%);
296
+ @nsw-aboriginal-green-550: hsl(89.55, 31.61%, 52.5%);
297
+ @nsw-aboriginal-green-600: hsl(87.03, 39.39%, 45.29%);
298
+ @nsw-aboriginal-green-650: hsl(97.99, 35.67%, 41.28%);
299
+ @nsw-aboriginal-green-700: hsl(111.48, 32.13%, 36.95%);
300
+ @nsw-aboriginal-green-750: hsl(127.58, 34.41%, 30.98%);
301
+ @nsw-aboriginal-green-800: hsl(140.73, 45.45%, 23.73%);
302
+ @nsw-aboriginal-green-850: hsl(141.23, 51.5%, 17.2%);
303
+ @nsw-aboriginal-green-900: hsl(142.1, 64.01%, 11%);
304
+ @nsw-aboriginal-green-950: hsl(139.39, 83.32%, 5.75%);
305
+ @nsw-aboriginal-blue-50: hsl(189.24, 57.11%, 95.67%);
306
+ @nsw-aboriginal-blue-100: hsl(189.24, 49.64%, 91.57%);
307
+ @nsw-aboriginal-blue-150: hsl(189.24, 47.11%, 87.45%);
308
+ @nsw-aboriginal-blue-200: hsl(189.23, 45.88%, 83.33%);
309
+ @nsw-aboriginal-blue-250: hsl(189.29, 45.53%, 79.28%);
310
+ @nsw-aboriginal-blue-300: hsl(189.34, 45.39%, 75.19%);
311
+ @nsw-aboriginal-blue-350: hsl(189.36, 45.41%, 71.06%);
312
+ @nsw-aboriginal-blue-400: hsl(189.35, 45.56%, 66.86%);
313
+ @nsw-aboriginal-blue-450: hsl(192.66, 41.82%, 57.86%);
314
+ @nsw-aboriginal-blue-500: hsl(195.5, 40.89%, 49.12%);
315
+ @nsw-aboriginal-blue-550: hsl(197.85, 55.74%, 40.47%);
316
+ @nsw-aboriginal-blue-600: hsl(199.09, 83.54%, 30.98%);
317
+ @nsw-aboriginal-blue-650: hsl(203.84, 73.26%, 29.5%);
318
+ @nsw-aboriginal-blue-700: hsl(208.96, 66.46%, 27.09%);
319
+ @nsw-aboriginal-blue-750: hsl(214.68, 61.55%, 24.07%);
320
+ @nsw-aboriginal-blue-800: hsl(221.31, 58.1%, 20.59%);
321
+ @nsw-aboriginal-blue-850: hsl(221.4, 64.27%, 15.08%);
322
+ @nsw-aboriginal-blue-900: hsl(222.04, 74.71%, 9.95%);
323
+ @nsw-aboriginal-blue-950: hsl(227.14, 84.88%, 5.65%);
324
+ @nsw-aboriginal-purple-50: hsl(310.68, 42.61%, 96.28%);
325
+ @nsw-aboriginal-purple-100: hsl(310.46, 34.93%, 92.41%);
326
+ @nsw-aboriginal-purple-150: hsl(310.24, 32.24%, 88.56%);
327
+ @nsw-aboriginal-purple-200: hsl(310, 30.77%, 84.71%);
328
+ @nsw-aboriginal-purple-250: hsl(309.75, 30.82%, 80.93%);
329
+ @nsw-aboriginal-purple-300: hsl(309.5, 30.72%, 77.16%);
330
+ @nsw-aboriginal-purple-350: hsl(309.22, 30.55%, 73.39%);
331
+ @nsw-aboriginal-purple-400: hsl(308.94, 30.32%, 69.61%);
332
+ @nsw-aboriginal-purple-450: hsl(308.5, 27.72%, 64.31%);
333
+ @nsw-aboriginal-purple-500: hsl(308.03, 25.74%, 59.05%);
334
+ @nsw-aboriginal-purple-550: hsl(307.53, 24.18%, 53.83%);
335
+ @nsw-aboriginal-purple-600: hsl(307, 24.19%, 48.63%);
336
+ @nsw-aboriginal-purple-650: hsl(307.56, 25.08%, 41.48%);
337
+ @nsw-aboriginal-purple-700: hsl(308.1, 26.24%, 34.55%);
338
+ @nsw-aboriginal-purple-750: hsl(308.61, 27.86%, 27.83%);
339
+ @nsw-aboriginal-purple-800: hsl(309.09, 30.28%, 21.37%);
340
+ @nsw-aboriginal-purple-850: hsl(308.99, 33.57%, 15.63%);
341
+ @nsw-aboriginal-purple-900: hsl(308.83, 40.05%, 10.18%);
342
+ @nsw-aboriginal-purple-950: hsl(308.92, 54.82%, 5.21%);