@nswds/tokens 2.4.1 → 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.
- package/dist/css/colors/global/hex.css +158 -6
- package/dist/css/colors/global/hsl.css +297 -145
- package/dist/css/colors/global/oklch.css +342 -190
- package/dist/css/colors/global/rgb.css +158 -6
- package/dist/css/colors/themes/masterbrand/hex.css +56 -0
- package/dist/css/colors/themes/masterbrand/hsl.css +56 -0
- package/dist/css/colors/themes/masterbrand/oklch.css +56 -0
- package/dist/css/colors/themes/masterbrand/rgb.css +56 -0
- package/dist/figma/global/color/hex.json +1406 -0
- package/dist/figma/global/color/hsl.json +2774 -0
- package/dist/figma/global/color/oklch.json +2774 -0
- package/dist/figma/global/color/rgb.json +2774 -0
- package/dist/figma/themes/masterbrand/color/hex.json +226 -0
- package/dist/figma/themes/masterbrand/color/hsl.json +450 -0
- package/dist/figma/themes/masterbrand/color/oklch.json +450 -0
- package/dist/figma/themes/masterbrand/color/rgb.json +450 -0
- package/dist/index.cjs +9722 -2185
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1485 -130
- package/dist/index.d.ts +1485 -130
- package/dist/index.js +9722 -2185
- package/dist/index.js.map +1 -1
- package/dist/js/colors/global/hex.js +174 -6
- package/dist/js/colors/global/hsl.js +313 -145
- package/dist/js/colors/global/oklch.js +358 -190
- package/dist/js/colors/global/rgb.js +174 -6
- package/dist/js/colors/themes/masterbrand/hsl.js +35 -35
- package/dist/js/colors/themes/masterbrand/oklch.js +56 -56
- package/dist/json/colors/global/hex.json +380 -1
- package/dist/json/colors/global/hsl.json +380 -1
- package/dist/json/colors/global/oklch.json +380 -1
- package/dist/json/colors/global/rgb.json +380 -1
- package/dist/json/colors/themes/masterbrand/hex.json +74 -1
- package/dist/json/colors/themes/masterbrand/hsl.json +74 -1
- package/dist/json/colors/themes/masterbrand/oklch.json +74 -1
- package/dist/json/colors/themes/masterbrand/rgb.json +74 -1
- package/dist/less/colors/global/hex.less +342 -0
- package/dist/less/colors/global/hsl.less +342 -0
- package/dist/less/colors/global/oklch.less +342 -0
- package/dist/less/colors/global/rgb.less +342 -0
- package/dist/less/colors/themes/masterbrand/hex.less +56 -0
- package/dist/less/colors/themes/masterbrand/hsl.less +56 -0
- package/dist/less/colors/themes/masterbrand/oklch.less +56 -0
- package/dist/less/colors/themes/masterbrand/rgb.less +56 -0
- package/dist/scss/colors/global/hex.scss +158 -6
- package/dist/scss/colors/global/hsl.scss +297 -145
- package/dist/scss/colors/global/oklch.scss +342 -190
- package/dist/scss/colors/global/rgb.scss +158 -6
- package/dist/scss/colors/themes/masterbrand/hsl.scss +35 -35
- package/dist/scss/colors/themes/masterbrand/oklch.scss +56 -56
- package/dist/tailwind/colors/global/hex.css +158 -6
- package/dist/tailwind/colors/global/hsl.css +297 -145
- package/dist/tailwind/colors/global/oklch.css +490 -190
- package/dist/tailwind/colors/global/rgb.css +158 -6
- package/dist/tailwind/colors/themes/masterbrand/hsl.css +35 -35
- package/dist/tailwind/colors/themes/masterbrand/oklch.css +56 -56
- package/dist/ts/colors/global/hex.ts +174 -6
- package/dist/ts/colors/global/hsl.ts +313 -145
- package/dist/ts/colors/global/oklch.ts +358 -190
- package/dist/ts/colors/global/rgb.ts +174 -6
- package/dist/ts/colors/themes/masterbrand/hsl.ts +35 -35
- package/dist/ts/colors/themes/masterbrand/oklch.ts +56 -56
- package/package.json +17 -3
- package/src/css/colors/global/hex.css +158 -6
- package/src/css/colors/global/hsl.css +297 -145
- package/src/css/colors/global/oklch.css +342 -190
- package/src/css/colors/global/rgb.css +158 -6
- package/src/css/colors/themes/masterbrand/hex.css +56 -0
- package/src/css/colors/themes/masterbrand/hsl.css +56 -0
- package/src/css/colors/themes/masterbrand/oklch.css +56 -0
- package/src/css/colors/themes/masterbrand/rgb.css +56 -0
- package/src/figma/global/color/hex.json +1406 -0
- package/src/figma/global/color/hsl.json +2774 -0
- package/src/figma/global/color/oklch.json +2774 -0
- package/src/figma/global/color/rgb.json +2774 -0
- package/src/figma/themes/masterbrand/color/hex.json +226 -0
- package/src/figma/themes/masterbrand/color/hsl.json +450 -0
- package/src/figma/themes/masterbrand/color/oklch.json +450 -0
- package/src/figma/themes/masterbrand/color/rgb.json +450 -0
- package/src/index.ts +3 -0
- package/src/js/colors/global/hex.js +174 -6
- package/src/js/colors/global/hsl.js +313 -145
- package/src/js/colors/global/oklch.js +358 -190
- package/src/js/colors/global/rgb.js +174 -6
- package/src/js/colors/themes/masterbrand/hsl.js +35 -35
- package/src/js/colors/themes/masterbrand/oklch.js +56 -56
- package/src/json/colors/global/hex.json +380 -1
- package/src/json/colors/global/hsl.json +380 -1
- package/src/json/colors/global/oklch.json +380 -1
- package/src/json/colors/global/rgb.json +380 -1
- package/src/json/colors/themes/masterbrand/hex.json +74 -1
- package/src/json/colors/themes/masterbrand/hsl.json +74 -1
- package/src/json/colors/themes/masterbrand/oklch.json +74 -1
- package/src/json/colors/themes/masterbrand/rgb.json +74 -1
- package/src/less/colors/global/hex.less +342 -0
- package/src/less/colors/global/hsl.less +342 -0
- package/src/less/colors/global/oklch.less +342 -0
- package/src/less/colors/global/rgb.less +342 -0
- package/src/less/colors/themes/masterbrand/hex.less +56 -0
- package/src/less/colors/themes/masterbrand/hsl.less +56 -0
- package/src/less/colors/themes/masterbrand/oklch.less +56 -0
- package/src/less/colors/themes/masterbrand/rgb.less +56 -0
- package/src/scss/colors/global/hex.scss +158 -6
- package/src/scss/colors/global/hsl.scss +297 -145
- package/src/scss/colors/global/oklch.scss +342 -190
- package/src/scss/colors/global/rgb.scss +158 -6
- package/src/scss/colors/themes/masterbrand/hsl.scss +35 -35
- package/src/scss/colors/themes/masterbrand/oklch.scss +56 -56
- package/src/tailwind/colors/global/hex.css +158 -6
- package/src/tailwind/colors/global/hsl.css +297 -145
- package/src/tailwind/colors/global/oklch.css +490 -190
- package/src/tailwind/colors/global/rgb.css +158 -6
- package/src/tailwind/colors/themes/masterbrand/hsl.css +35 -35
- package/src/tailwind/colors/themes/masterbrand/oklch.css +56 -56
- package/src/ts/colors/global/hex.ts +174 -6
- package/src/ts/colors/global/hsl.ts +313 -145
- package/src/ts/colors/global/oklch.ts +358 -190
- package/src/ts/colors/global/rgb.ts +174 -6
- package/src/ts/colors/themes/masterbrand/hsl.ts +35 -35
- package/src/ts/colors/themes/masterbrand/oklch.ts +56 -56
|
@@ -1,192 +1,344 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
--nsw-grey-50: oklch(0.
|
|
3
|
-
--nsw-grey-100: oklch(0.
|
|
4
|
-
--nsw-grey-150: oklch(0.
|
|
5
|
-
--nsw-grey-200: oklch(0.
|
|
6
|
-
--nsw-grey-250: oklch(0.
|
|
7
|
-
--nsw-grey-300: oklch(0.
|
|
8
|
-
--nsw-grey-350: oklch(0.
|
|
9
|
-
--nsw-grey-400: oklch(0.
|
|
10
|
-
--nsw-grey-450: oklch(0.
|
|
11
|
-
--nsw-grey-500: oklch(0.
|
|
12
|
-
--nsw-grey-550: oklch(0.
|
|
13
|
-
--nsw-grey-600: oklch(0.
|
|
14
|
-
--nsw-grey-650: oklch(0.
|
|
15
|
-
--nsw-grey-700: oklch(0.
|
|
16
|
-
--nsw-grey-750: oklch(0.
|
|
17
|
-
--nsw-grey-800: oklch(0.
|
|
18
|
-
--nsw-grey-850: oklch(0.
|
|
19
|
-
--nsw-grey-900: oklch(0.
|
|
20
|
-
--nsw-grey-950: oklch(0.
|
|
21
|
-
--nsw-green-50: oklch(0.
|
|
22
|
-
--nsw-green-100: oklch(0.
|
|
23
|
-
--nsw-green-150: oklch(0.
|
|
24
|
-
--nsw-green-200: oklch(0.
|
|
25
|
-
--nsw-green-250: oklch(0.
|
|
26
|
-
--nsw-green-300: oklch(0.
|
|
27
|
-
--nsw-green-350: oklch(0.
|
|
28
|
-
--nsw-green-400: oklch(0.
|
|
29
|
-
--nsw-green-450: oklch(0.
|
|
30
|
-
--nsw-green-500: oklch(0.
|
|
31
|
-
--nsw-green-550: oklch(0.
|
|
32
|
-
--nsw-green-600: oklch(0.
|
|
33
|
-
--nsw-green-650: oklch(0.
|
|
34
|
-
--nsw-green-700: oklch(0.
|
|
35
|
-
--nsw-green-750: oklch(0.
|
|
36
|
-
--nsw-green-800: oklch(0.
|
|
37
|
-
--nsw-green-850: oklch(0.
|
|
38
|
-
--nsw-green-900: oklch(0.
|
|
39
|
-
--nsw-green-950: oklch(0.
|
|
40
|
-
--nsw-teal-50: oklch(0.
|
|
41
|
-
--nsw-teal-100: oklch(0.
|
|
42
|
-
--nsw-teal-150: oklch(0.
|
|
43
|
-
--nsw-teal-200: oklch(0.
|
|
44
|
-
--nsw-teal-250: oklch(0.
|
|
45
|
-
--nsw-teal-300: oklch(0.
|
|
46
|
-
--nsw-teal-350: oklch(0.
|
|
47
|
-
--nsw-teal-400: oklch(0.
|
|
48
|
-
--nsw-teal-450: oklch(0.
|
|
49
|
-
--nsw-teal-500: oklch(0.
|
|
50
|
-
--nsw-teal-550: oklch(0.
|
|
51
|
-
--nsw-teal-600: oklch(0.
|
|
52
|
-
--nsw-teal-650: oklch(0.
|
|
53
|
-
--nsw-teal-700: oklch(0.
|
|
54
|
-
--nsw-teal-750: oklch(0.
|
|
55
|
-
--nsw-teal-800: oklch(0.
|
|
56
|
-
--nsw-teal-850: oklch(0.
|
|
57
|
-
--nsw-teal-900: oklch(0.
|
|
58
|
-
--nsw-teal-950: oklch(0.
|
|
59
|
-
--nsw-blue-50: oklch(0.
|
|
60
|
-
--nsw-blue-100: oklch(0.
|
|
61
|
-
--nsw-blue-150: oklch(0.
|
|
62
|
-
--nsw-blue-200: oklch(0.
|
|
63
|
-
--nsw-blue-250: oklch(0.
|
|
64
|
-
--nsw-blue-300: oklch(0.
|
|
65
|
-
--nsw-blue-350: oklch(0.
|
|
66
|
-
--nsw-blue-400: oklch(0.
|
|
67
|
-
--nsw-blue-450: oklch(0.
|
|
68
|
-
--nsw-blue-500: oklch(0.
|
|
69
|
-
--nsw-blue-550: oklch(0.
|
|
70
|
-
--nsw-blue-600: oklch(0.
|
|
71
|
-
--nsw-blue-650: oklch(0.
|
|
72
|
-
--nsw-blue-700: oklch(0.
|
|
73
|
-
--nsw-blue-750: oklch(0.
|
|
74
|
-
--nsw-blue-800: oklch(0.
|
|
75
|
-
--nsw-blue-850: oklch(0.
|
|
76
|
-
--nsw-blue-900: oklch(0.
|
|
77
|
-
--nsw-blue-950: oklch(0.
|
|
78
|
-
--nsw-purple-50: oklch(0.
|
|
79
|
-
--nsw-purple-100: oklch(0.
|
|
80
|
-
--nsw-purple-150: oklch(0.
|
|
81
|
-
--nsw-purple-200: oklch(0.
|
|
82
|
-
--nsw-purple-250: oklch(0.
|
|
83
|
-
--nsw-purple-300: oklch(0.
|
|
84
|
-
--nsw-purple-350: oklch(0.
|
|
85
|
-
--nsw-purple-400: oklch(0.
|
|
86
|
-
--nsw-purple-450: oklch(0.
|
|
87
|
-
--nsw-purple-500: oklch(0.
|
|
88
|
-
--nsw-purple-550: oklch(0.
|
|
89
|
-
--nsw-purple-600: oklch(0.
|
|
90
|
-
--nsw-purple-650: oklch(0.
|
|
91
|
-
--nsw-purple-700: oklch(0.
|
|
92
|
-
--nsw-purple-750: oklch(0.
|
|
93
|
-
--nsw-purple-800: oklch(0.
|
|
94
|
-
--nsw-purple-850: oklch(0.
|
|
95
|
-
--nsw-purple-900: oklch(0.
|
|
96
|
-
--nsw-purple-950: oklch(0.
|
|
97
|
-
--nsw-fuchsia-50: oklch(0.
|
|
98
|
-
--nsw-fuchsia-100: oklch(0.
|
|
99
|
-
--nsw-fuchsia-150: oklch(0.
|
|
100
|
-
--nsw-fuchsia-200: oklch(0.
|
|
101
|
-
--nsw-fuchsia-250: oklch(0.
|
|
102
|
-
--nsw-fuchsia-300: oklch(0.
|
|
103
|
-
--nsw-fuchsia-350: oklch(0.
|
|
104
|
-
--nsw-fuchsia-400: oklch(0.
|
|
105
|
-
--nsw-fuchsia-450: oklch(0.
|
|
106
|
-
--nsw-fuchsia-500: oklch(0.
|
|
107
|
-
--nsw-fuchsia-550: oklch(0.
|
|
108
|
-
--nsw-fuchsia-600: oklch(0.
|
|
109
|
-
--nsw-fuchsia-650: oklch(0.
|
|
110
|
-
--nsw-fuchsia-700: oklch(0.
|
|
111
|
-
--nsw-fuchsia-750: oklch(0.
|
|
112
|
-
--nsw-fuchsia-800: oklch(0.
|
|
113
|
-
--nsw-fuchsia-850: oklch(0.
|
|
114
|
-
--nsw-fuchsia-900: oklch(0.
|
|
115
|
-
--nsw-fuchsia-950: oklch(0.
|
|
116
|
-
--nsw-red-50: oklch(0.
|
|
117
|
-
--nsw-red-100: oklch(0.
|
|
118
|
-
--nsw-red-150: oklch(0.
|
|
119
|
-
--nsw-red-200: oklch(0.
|
|
120
|
-
--nsw-red-250: oklch(0.
|
|
121
|
-
--nsw-red-300: oklch(0.
|
|
122
|
-
--nsw-red-350: oklch(0.
|
|
123
|
-
--nsw-red-400: oklch(0.
|
|
124
|
-
--nsw-red-450: oklch(0.
|
|
125
|
-
--nsw-red-500: oklch(0.
|
|
126
|
-
--nsw-red-550: oklch(0.
|
|
127
|
-
--nsw-red-600: oklch(0.
|
|
128
|
-
--nsw-red-650: oklch(0.
|
|
129
|
-
--nsw-red-700: oklch(0.
|
|
130
|
-
--nsw-red-750: oklch(0.
|
|
131
|
-
--nsw-red-800: oklch(0.
|
|
132
|
-
--nsw-red-850: oklch(0.
|
|
133
|
-
--nsw-red-900: oklch(0.
|
|
134
|
-
--nsw-red-950: oklch(0.
|
|
135
|
-
--nsw-orange-50: oklch(0.
|
|
136
|
-
--nsw-orange-100: oklch(0.
|
|
137
|
-
--nsw-orange-150: oklch(0.
|
|
138
|
-
--nsw-orange-200: oklch(0.
|
|
139
|
-
--nsw-orange-250: oklch(0.
|
|
140
|
-
--nsw-orange-300: oklch(0.
|
|
141
|
-
--nsw-orange-350: oklch(0.
|
|
142
|
-
--nsw-orange-400: oklch(0.
|
|
143
|
-
--nsw-orange-450: oklch(0.
|
|
144
|
-
--nsw-orange-500: oklch(0.
|
|
145
|
-
--nsw-orange-550: oklch(0.
|
|
146
|
-
--nsw-orange-600: oklch(0.
|
|
147
|
-
--nsw-orange-650: oklch(0.
|
|
148
|
-
--nsw-orange-700: oklch(0.
|
|
149
|
-
--nsw-orange-750: oklch(0.
|
|
150
|
-
--nsw-orange-800: oklch(0.
|
|
151
|
-
--nsw-orange-850: oklch(0.
|
|
152
|
-
--nsw-orange-900: oklch(0.
|
|
153
|
-
--nsw-orange-950: oklch(0.
|
|
154
|
-
--nsw-yellow-50: oklch(0.
|
|
155
|
-
--nsw-yellow-100: oklch(0.
|
|
156
|
-
--nsw-yellow-150: oklch(0.
|
|
157
|
-
--nsw-yellow-200: oklch(0.
|
|
158
|
-
--nsw-yellow-250: oklch(0.
|
|
159
|
-
--nsw-yellow-300: oklch(0.
|
|
160
|
-
--nsw-yellow-350: oklch(0.
|
|
161
|
-
--nsw-yellow-400: oklch(0.
|
|
162
|
-
--nsw-yellow-450: oklch(0.
|
|
163
|
-
--nsw-yellow-500: oklch(0.
|
|
164
|
-
--nsw-yellow-550: oklch(0.
|
|
165
|
-
--nsw-yellow-600: oklch(0.
|
|
166
|
-
--nsw-yellow-650: oklch(0.
|
|
167
|
-
--nsw-yellow-700: oklch(0.
|
|
168
|
-
--nsw-yellow-750: oklch(0.
|
|
169
|
-
--nsw-yellow-800: oklch(0.
|
|
170
|
-
--nsw-yellow-850: oklch(0.
|
|
171
|
-
--nsw-yellow-900: oklch(0.
|
|
172
|
-
--nsw-yellow-950: oklch(0.
|
|
173
|
-
--nsw-brown-50: oklch(0.
|
|
174
|
-
--nsw-brown-100: oklch(0.
|
|
175
|
-
--nsw-brown-150: oklch(0.
|
|
176
|
-
--nsw-brown-200: oklch(0.
|
|
177
|
-
--nsw-brown-250: oklch(0.
|
|
178
|
-
--nsw-brown-300: oklch(0.
|
|
179
|
-
--nsw-brown-350: oklch(0.
|
|
180
|
-
--nsw-brown-400: oklch(0.
|
|
181
|
-
--nsw-brown-450: oklch(0.
|
|
182
|
-
--nsw-brown-500: oklch(0.
|
|
183
|
-
--nsw-brown-550: oklch(0.
|
|
184
|
-
--nsw-brown-600: oklch(0.
|
|
185
|
-
--nsw-brown-650: oklch(0.
|
|
186
|
-
--nsw-brown-700: oklch(0.
|
|
187
|
-
--nsw-brown-750: oklch(0.
|
|
188
|
-
--nsw-brown-800: oklch(0.
|
|
189
|
-
--nsw-brown-850: oklch(0.
|
|
190
|
-
--nsw-brown-900: oklch(0.
|
|
191
|
-
--nsw-brown-950: oklch(0.
|
|
2
|
+
--nsw-grey-50: oklch(0.9850175274112574 0 0);
|
|
3
|
+
--nsw-grey-100: oklch(0.9700350548225147 0 0);
|
|
4
|
+
--nsw-grey-150: oklch(0.9550525822337722 0 0);
|
|
5
|
+
--nsw-grey-200: oklch(0.9400701096450296 0 0);
|
|
6
|
+
--nsw-grey-250: oklch(0.9208267112856119 0.0019440594503795112 228.8687380011113);
|
|
7
|
+
--nsw-grey-300: oklch(0.9015833129261941 0.0038881189007590215 228.8687380011113);
|
|
8
|
+
--nsw-grey-350: oklch(0.8823399145667763 0.005832178351138532 228.8687380011113);
|
|
9
|
+
--nsw-grey-400: oklch(0.8630965162073586 0.007776237801518043 228.8687380011113);
|
|
10
|
+
--nsw-grey-450: oklch(0.7539290831519737 0.008632737257709678 229.8058410593526);
|
|
11
|
+
--nsw-grey-500: oklch(0.6447616500965888 0.009489236713901311 230.74294411759388);
|
|
12
|
+
--nsw-grey-550: oklch(0.5355942170412039 0.010345736170092946 231.68004717583517);
|
|
13
|
+
--nsw-grey-600: oklch(0.426426783985819 0.011202235626284581 232.61715023407646);
|
|
14
|
+
--nsw-grey-650: oklch(0.3871732148397997 0.010991669591883444 234.98382249287215);
|
|
15
|
+
--nsw-grey-700: oklch(0.3479196456937804 0.010781103557482309 237.35049475166784);
|
|
16
|
+
--nsw-grey-750: oklch(0.3086660765477611 0.010570537523081174 239.71716701046353);
|
|
17
|
+
--nsw-grey-800: oklch(0.26941250740174183 0.010359971488680036 242.08383926925922);
|
|
18
|
+
--nsw-grey-850: oklch(0.222265318606437 0.00880597576537803 242.08383926925922);
|
|
19
|
+
--nsw-grey-900: oklch(0.17511812981113217 0.007251980042076026 242.08383926925922);
|
|
20
|
+
--nsw-grey-950: oklch(0.12797094101582737 0.005697984318774021 242.08383926925922);
|
|
21
|
+
--nsw-green-50: oklch(0.9888862054005949 0.015684460842301393 148.90450809902686);
|
|
22
|
+
--nsw-green-100: oklch(0.9777724108011899 0.026542933733125437 148.90450809902686);
|
|
23
|
+
--nsw-green-150: oklch(0.966658616201785 0.03740140662394948 148.90450809902686);
|
|
24
|
+
--nsw-green-200: oklch(0.9555448216023799 0.04825987951477352 148.90450809902686);
|
|
25
|
+
--nsw-green-250: oklch(0.93795442561214 0.06251830190357965 148.8847612358868);
|
|
26
|
+
--nsw-green-300: oklch(0.9203640296219002 0.07677672429238579 148.86501437274677);
|
|
27
|
+
--nsw-green-350: oklch(0.9027736336316604 0.09103514668119192 148.84526750960674);
|
|
28
|
+
--nsw-green-400: oklch(0.8851832376414206 0.10529356906999805 148.82552064646669);
|
|
29
|
+
--nsw-green-450: oklch(0.8248441293359839 0.12523789819884273 148.68573660212806);
|
|
30
|
+
--nsw-green-500: oklch(0.7645050210305473 0.14518222732768743 148.54595255778946);
|
|
31
|
+
--nsw-green-550: oklch(0.7041659127251108 0.16512655645653213 148.40616851345084);
|
|
32
|
+
--nsw-green-600: oklch(0.6438268044196741 0.18507088558537682 148.2663844691122);
|
|
33
|
+
--nsw-green-650: oklch(0.5633395874961222 0.16618487162330642 146.82362307378662);
|
|
34
|
+
--nsw-green-700: oklch(0.4828523705725703 0.147298857661236 145.38086167846106);
|
|
35
|
+
--nsw-green-750: oklch(0.40236515364901837 0.12841284369916556 143.9381002831355);
|
|
36
|
+
--nsw-green-800: oklch(0.3218779367254665 0.10952682973709514 142.4953388878099);
|
|
37
|
+
--nsw-green-850: oklch(0.2655492977985099 0.09309780527653087 142.4953388878099);
|
|
38
|
+
--nsw-green-900: oklch(0.20922065887155322 0.07666878081596659 142.4953388878099);
|
|
39
|
+
--nsw-green-950: oklch(0.15289201994459659 0.060239756355402324 142.4953388878099);
|
|
40
|
+
--nsw-teal-50: oklch(0.9817421856952406 0.010019570541999173 186.58790176853086);
|
|
41
|
+
--nsw-teal-100: oklch(0.9634843713904812 0.01695619630184475 186.58790176853086);
|
|
42
|
+
--nsw-teal-150: oklch(0.9452265570857217 0.02389282206169033 186.58790176853086);
|
|
43
|
+
--nsw-teal-200: oklch(0.9269687427809623 0.03082944782153591 186.58790176853086);
|
|
44
|
+
--nsw-teal-250: oklch(0.9062032463653427 0.042800313186136286 191.43372937544774);
|
|
45
|
+
--nsw-teal-300: oklch(0.8854377499497231 0.054771178550736654 196.27955698236462);
|
|
46
|
+
--nsw-teal-350: oklch(0.8646722535341036 0.06674204391533703 201.1253845892815);
|
|
47
|
+
--nsw-teal-400: oklch(0.843906757118484 0.0787129092799374 205.9712121961984);
|
|
48
|
+
--nsw-teal-450: oklch(0.7720750773324279 0.0790813961169628 207.2003147622988);
|
|
49
|
+
--nsw-teal-500: oklch(0.7002433975463718 0.07944988295398821 208.4294173283992);
|
|
50
|
+
--nsw-teal-550: oklch(0.6284117177603156 0.07981836979101362 209.6585198944996);
|
|
51
|
+
--nsw-teal-600: oklch(0.5565800379742595 0.08018685662803901 210.8876224606);
|
|
52
|
+
--nsw-teal-650: oklch(0.5022148272886866 0.07346217392494098 210.7415844616744);
|
|
53
|
+
--nsw-teal-700: oklch(0.44784961660311384 0.06673749122184294 210.5955464627488);
|
|
54
|
+
--nsw-teal-750: oklch(0.39348440591754097 0.06001280851874492 210.4495084638232);
|
|
55
|
+
--nsw-teal-800: oklch(0.33911919523196815 0.05328812581564689 210.3034704648976);
|
|
56
|
+
--nsw-teal-850: oklch(0.2797733360663737 0.04529490694329986 210.3034704648976);
|
|
57
|
+
--nsw-teal-900: oklch(0.2204274769007793 0.037301688070952826 210.3034704648976);
|
|
58
|
+
--nsw-teal-950: oklch(0.16108161773518487 0.029308469198605788 210.3034704648976);
|
|
59
|
+
--nsw-blue-50: oklch(0.9816683948128555 0.013540580086234762 227.890755564881);
|
|
60
|
+
--nsw-blue-100: oklch(0.9633367896257109 0.022914827838243446 227.890755564881);
|
|
61
|
+
--nsw-blue-150: oklch(0.9450051844385663 0.032289075590252125 227.890755564881);
|
|
62
|
+
--nsw-blue-200: oklch(0.9266735792514218 0.04166332334226081 227.890755564881);
|
|
63
|
+
--nsw-blue-250: oklch(0.9110280326138016 0.05428316129852959 226.81685418252806);
|
|
64
|
+
--nsw-blue-300: oklch(0.8953824859761815 0.06690299925479838 225.74295280017512);
|
|
65
|
+
--nsw-blue-350: oklch(0.8797369393385615 0.07952283721106716 224.66905141782217);
|
|
66
|
+
--nsw-blue-400: oklch(0.8640913927009413 0.09214267516733594 223.59515003546923);
|
|
67
|
+
--nsw-blue-450: oklch(0.7918467078448571 0.12656541375136143 232.8854457721009);
|
|
68
|
+
--nsw-blue-500: oklch(0.719602022988773 0.1609881523353869 242.17574150873253);
|
|
69
|
+
--nsw-blue-550: oklch(0.6473573381326887 0.19541089091941238 251.4660372453642);
|
|
70
|
+
--nsw-blue-600: oklch(0.5751126532766045 0.2298336295034379 260.75633298199585);
|
|
71
|
+
--nsw-blue-650: oklch(0.5038341615701663 0.20169915825513662 260.52773388396713);
|
|
72
|
+
--nsw-blue-700: oklch(0.43255566986372795 0.17356468700683536 260.29913478593846);
|
|
73
|
+
--nsw-blue-750: oklch(0.3612771781572896 0.1454302157585341 260.07053568790974);
|
|
74
|
+
--nsw-blue-800: oklch(0.2899986864508513 0.11729574451023282 259.841936589881);
|
|
75
|
+
--nsw-blue-850: oklch(0.23924891632195233 0.0997013828336979 259.841936589881);
|
|
76
|
+
--nsw-blue-900: oklch(0.18849914619305336 0.08210702115716298 259.841936589881);
|
|
77
|
+
--nsw-blue-950: oklch(0.13774937606415438 0.06451265948062805 259.841936589881);
|
|
78
|
+
--nsw-purple-50: oklch(0.9805379794123148 0.012378795916481191 293.8323307371206);
|
|
79
|
+
--nsw-purple-100: oklch(0.9610759588246297 0.020948731550968172 293.8323307371206);
|
|
80
|
+
--nsw-purple-150: oklch(0.9416139382369446 0.029518667185455153 293.8323307371206);
|
|
81
|
+
--nsw-purple-200: oklch(0.9221519176492594 0.038088602819942134 293.8323307371206);
|
|
82
|
+
--nsw-purple-250: oklch(0.9013385389929451 0.05096960178613127 294.16162791277);
|
|
83
|
+
--nsw-purple-300: oklch(0.8805251603366309 0.06385060075232041 294.4909250884194);
|
|
84
|
+
--nsw-purple-350: oklch(0.8597117816803166 0.07673159971850954 294.8202222640688);
|
|
85
|
+
--nsw-purple-400: oklch(0.8388984030240023 0.08961259868469867 295.1495194397181);
|
|
86
|
+
--nsw-purple-450: oklch(0.7746062729566157 0.12261307668256607 293.98756051942956);
|
|
87
|
+
--nsw-purple-500: oklch(0.7103141428892291 0.15561355468043347 292.825601599141);
|
|
88
|
+
--nsw-purple-550: oklch(0.6460220128218426 0.1886140326783009 291.6636426788525);
|
|
89
|
+
--nsw-purple-600: oklch(0.5817298827544559 0.2216145106761683 290.50168375856396);
|
|
90
|
+
--nsw-purple-650: oklch(0.5169868726378744 0.203439148040165 293.5593313045061);
|
|
91
|
+
--nsw-purple-700: oklch(0.4522438625212928 0.18526378540416166 296.6169788504482);
|
|
92
|
+
--nsw-purple-750: oklch(0.3875008524047112 0.16708842276815833 299.67462639639035);
|
|
93
|
+
--nsw-purple-800: oklch(0.32275784228812965 0.14891306013215502 302.7322739423325);
|
|
94
|
+
--nsw-purple-850: oklch(0.26627521988770697 0.12657610111233178 302.7322739423325);
|
|
95
|
+
--nsw-purple-900: oklch(0.2097925974872843 0.10423914209250851 302.7322739423325);
|
|
96
|
+
--nsw-purple-950: oklch(0.1533099750868616 0.08190218307268526 302.7322739423325);
|
|
97
|
+
--nsw-fuchsia-50: oklch(0.9829623738966177 0.01392018614736864 339.13418980883597);
|
|
98
|
+
--nsw-fuchsia-100: oklch(0.9659247477932353 0.023557238095546926 339.13418980883597);
|
|
99
|
+
--nsw-fuchsia-150: oklch(0.9488871216898529 0.03319429004372521 339.13418980883597);
|
|
100
|
+
--nsw-fuchsia-200: oklch(0.9318494955864706 0.0428313419919035 339.13418980883597);
|
|
101
|
+
--nsw-fuchsia-250: oklch(0.9103421700940119 0.056169859500935226 337.9783379111923);
|
|
102
|
+
--nsw-fuchsia-300: oklch(0.8888348446015532 0.06950837700996695 336.8224860135486);
|
|
103
|
+
--nsw-fuchsia-350: oklch(0.8673275191090944 0.08284689451899868 335.6666341159049);
|
|
104
|
+
--nsw-fuchsia-400: oklch(0.8458201936166357 0.09618541202803041 334.5107822182612);
|
|
105
|
+
--nsw-fuchsia-450: oklch(0.78467847613666 0.13569730252807746 335.94616447972885);
|
|
106
|
+
--nsw-fuchsia-500: oklch(0.7235367586566843 0.17520919302812454 337.3815467411964);
|
|
107
|
+
--nsw-fuchsia-550: oklch(0.6623950411767086 0.2147210835281716 338.816929002664);
|
|
108
|
+
--nsw-fuchsia-600: oklch(0.6012533236967328 0.25423297402821865 340.2523112641316);
|
|
109
|
+
--nsw-fuchsia-650: oklch(0.5360839646226407 0.22738751413049402 340.61577057263503);
|
|
110
|
+
--nsw-fuchsia-700: oklch(0.4709146055485488 0.20054205423276938 340.9792298811385);
|
|
111
|
+
--nsw-fuchsia-750: oklch(0.40574524647445687 0.17369659433504472 341.342689189642);
|
|
112
|
+
--nsw-fuchsia-800: oklch(0.3405758874003649 0.1468511344373201 341.7061484981454);
|
|
113
|
+
--nsw-fuchsia-850: oklch(0.28097510710530105 0.12482346427172208 341.7061484981454);
|
|
114
|
+
--nsw-fuchsia-900: oklch(0.22137432681023717 0.10279579410612406 341.7061484981454);
|
|
115
|
+
--nsw-fuchsia-950: oklch(0.1617735465151733 0.08076812394052604 341.7061484981454);
|
|
116
|
+
--nsw-red-50: oklch(0.9865629857873716 0.009043874600495525 6.653158456152784);
|
|
117
|
+
--nsw-red-100: oklch(0.9731259715747431 0.015305018554684736 6.653158456152784);
|
|
118
|
+
--nsw-red-150: oklch(0.9596889573621147 0.021566162508873946 6.653158456152784);
|
|
119
|
+
--nsw-red-200: oklch(0.9462519431494862 0.027827306463063157 6.653158456152784);
|
|
120
|
+
--nsw-red-250: oklch(0.9224097820035976 0.041627996281084 7.632544925274676);
|
|
121
|
+
--nsw-red-300: oklch(0.8985676208577089 0.05542868609910484 8.611931394396567);
|
|
122
|
+
--nsw-red-350: oklch(0.8747254597118204 0.06922937591712569 9.59131786351846);
|
|
123
|
+
--nsw-red-400: oklch(0.8508832985659317 0.08303006573514653 10.570704332640352);
|
|
124
|
+
--nsw-red-450: oklch(0.7786513285230947 0.11664880226231811 13.011419492803782);
|
|
125
|
+
--nsw-red-500: oklch(0.7064193584802577 0.15026753878948967 15.45213465296721);
|
|
126
|
+
--nsw-red-550: oklch(0.6341873884374207 0.18388627531666124 17.892849813130642);
|
|
127
|
+
--nsw-red-600: oklch(0.5619554183945837 0.2175050118438328 20.33356497329407);
|
|
128
|
+
--nsw-red-650: oklch(0.5007084126233001 0.1948505033631296 19.53345435711309);
|
|
129
|
+
--nsw-red-700: oklch(0.4394614068520166 0.17219599488242637 18.733343740932114);
|
|
130
|
+
--nsw-red-750: oklch(0.3782144010807331 0.14954148640172313 17.933233124751133);
|
|
131
|
+
--nsw-red-800: oklch(0.31696739530944956 0.1268869779210199 17.133122508570153);
|
|
132
|
+
--nsw-red-850: oklch(0.2614981011302959 0.10785393123286692 17.133122508570153);
|
|
133
|
+
--nsw-red-900: oklch(0.20602880695114223 0.08882088454471393 17.133122508570153);
|
|
134
|
+
--nsw-red-950: oklch(0.15055951277198854 0.06978783785656095 17.133122508570153);
|
|
135
|
+
--nsw-orange-50: oklch(0.9887596459640142 0.008284590272523786 63.743373146104155);
|
|
136
|
+
--nsw-orange-100: oklch(0.9775192919280284 0.014020075845809487 63.743373146104155);
|
|
137
|
+
--nsw-orange-150: oklch(0.9662789378920427 0.019755561419095187 63.743373146104155);
|
|
138
|
+
--nsw-orange-200: oklch(0.9550385838560569 0.025491046992380886 63.743373146104155);
|
|
139
|
+
--nsw-orange-250: oklch(0.9367837854692349 0.041089180700628024 64.93015241128123);
|
|
140
|
+
--nsw-orange-300: oklch(0.9185289870824129 0.05668731440887516 66.1169316764583);
|
|
141
|
+
--nsw-orange-350: oklch(0.900274188695591 0.07228544811712229 67.30371094163536);
|
|
142
|
+
--nsw-orange-400: oklch(0.882019390308769 0.08788358182536943 68.49049020681242);
|
|
143
|
+
--nsw-orange-450: oklch(0.8301180073463059 0.11402000052072006 61.90488982503486);
|
|
144
|
+
--nsw-orange-500: oklch(0.7782166243838429 0.1401564192160707 55.31928944325728);
|
|
145
|
+
--nsw-orange-550: oklch(0.7263152414213797 0.16629283791142135 48.73368906147971);
|
|
146
|
+
--nsw-orange-600: oklch(0.6744138584589167 0.192429256606772 42.14808867970214);
|
|
147
|
+
--nsw-orange-650: oklch(0.6138601814796794 0.18416658101442235 39.866677723327115);
|
|
148
|
+
--nsw-orange-700: oklch(0.5533065045004422 0.17590390542207268 37.585266766952095);
|
|
149
|
+
--nsw-orange-750: oklch(0.49275282752120486 0.16764122982972302 35.303855810577076);
|
|
150
|
+
--nsw-orange-800: oklch(0.4321991505419676 0.15937855423737338 33.02244485420205);
|
|
151
|
+
--nsw-orange-850: oklch(0.3565642991971233 0.13547177110176736 33.02244485420205);
|
|
152
|
+
--nsw-orange-900: oklch(0.2809294478522789 0.11156498796616136 33.02244485420205);
|
|
153
|
+
--nsw-orange-950: oklch(0.2052945965074346 0.08765820483055536 33.02244485420205);
|
|
154
|
+
--nsw-yellow-50: oklch(0.9916099103487608 0.016065385220578425 93.38344614252667);
|
|
155
|
+
--nsw-yellow-100: oklch(0.9832198206975215 0.02718757498867118 93.38344614252667);
|
|
156
|
+
--nsw-yellow-150: oklch(0.9748297310462821 0.03830976475676393 93.38344614252667);
|
|
157
|
+
--nsw-yellow-200: oklch(0.9664396413950429 0.049431954524856686 93.38344614252667);
|
|
158
|
+
--nsw-yellow-250: oklch(0.9570183122704129 0.061834853226387446 93.5472306553523);
|
|
159
|
+
--nsw-yellow-300: oklch(0.9475969831457829 0.0742377519279182 93.71101516817794);
|
|
160
|
+
--nsw-yellow-350: oklch(0.938175654021153 0.08664065062944896 93.87479968100357);
|
|
161
|
+
--nsw-yellow-400: oklch(0.928754324896523 0.09904354933097972 94.0385841938292);
|
|
162
|
+
--nsw-yellow-450: oklch(0.8978251501132377 0.11612212707646741 89.92658895694369);
|
|
163
|
+
--nsw-yellow-500: oklch(0.8668959753299523 0.13320070482195506 85.81459372005818);
|
|
164
|
+
--nsw-yellow-550: oklch(0.8359668005466669 0.15027928256744275 81.7025984831727);
|
|
165
|
+
--nsw-yellow-600: oklch(0.8050376257633817 0.16735786031293043 77.59060324628719);
|
|
166
|
+
--nsw-yellow-650: oklch(0.7106097269644318 0.14773585550069343 77.86265854004408);
|
|
167
|
+
--nsw-yellow-700: oklch(0.6161818281654818 0.12811385068845643 78.13471383380096);
|
|
168
|
+
--nsw-yellow-750: oklch(0.521753929366532 0.1084918458762194 78.40676912755785);
|
|
169
|
+
--nsw-yellow-800: oklch(0.42732603056758206 0.08886984106398241 78.67882442131474);
|
|
170
|
+
--nsw-yellow-850: oklch(0.3525439752182552 0.07553936490438505 78.67882442131474);
|
|
171
|
+
--nsw-yellow-900: oklch(0.27776191986892834 0.06220888874478769 78.67882442131474);
|
|
172
|
+
--nsw-yellow-950: oklch(0.20297986451960148 0.04887841258519032 78.67882442131474);
|
|
173
|
+
--nsw-brown-50: oklch(0.9801175930362143 0.006321527123876961 72.56545339108834);
|
|
174
|
+
--nsw-brown-100: oklch(0.9602351860724284 0.010697968978868705 72.56545339108834);
|
|
175
|
+
--nsw-brown-150: oklch(0.9403527791086426 0.01507441083386045 72.56545339108834);
|
|
176
|
+
--nsw-brown-200: oklch(0.9204703721448568 0.01945085268885219 72.56545339108834);
|
|
177
|
+
--nsw-brown-250: oklch(0.9079853218058483 0.0258503316070154 72.0409329158382);
|
|
178
|
+
--nsw-brown-300: oklch(0.8955002714668399 0.03224981052517861 71.51641244058807);
|
|
179
|
+
--nsw-brown-350: oklch(0.8830152211278313 0.03864928944334182 70.99189196533794);
|
|
180
|
+
--nsw-brown-400: oklch(0.8705301707888228 0.04504876836150503 70.4673714900878);
|
|
181
|
+
--nsw-brown-450: oklch(0.8207420162298631 0.05412276224933329 70.37812098088949);
|
|
182
|
+
--nsw-brown-500: oklch(0.7709538616709035 0.06319675613716154 70.2888704716912);
|
|
183
|
+
--nsw-brown-550: oklch(0.7211657071119438 0.0722707500249898 70.1996199624929);
|
|
184
|
+
--nsw-brown-600: oklch(0.6713775525529841 0.08134474391281805 70.1103694532946);
|
|
185
|
+
--nsw-brown-650: oklch(0.5938734136361322 0.0756351453597017 69.31281465877314);
|
|
186
|
+
--nsw-brown-700: oklch(0.5163692747192803 0.06992554680658533 68.51525986425168);
|
|
187
|
+
--nsw-brown-750: oklch(0.4388651358024283 0.06421594825346898 67.71770506973021);
|
|
188
|
+
--nsw-brown-800: oklch(0.3613609968855764 0.058506349700352615 66.92015027520875);
|
|
189
|
+
--nsw-brown-850: oklch(0.2981228224306005 0.04973039724529972 66.92015027520875);
|
|
190
|
+
--nsw-brown-900: oklch(0.23488464797562464 0.04095444479024683 66.92015027520875);
|
|
191
|
+
--nsw-brown-950: oklch(0.17164647352064877 0.03217849233519394 66.92015027520875);
|
|
192
|
+
--nsw-aboriginal-grey-50: oklch(0.9791354942965652 0.0014935040072708932 78.29695339492076);
|
|
193
|
+
--nsw-aboriginal-grey-100: oklch(0.9582709885931304 0.002527468319996896 78.29695339492076);
|
|
194
|
+
--nsw-aboriginal-grey-150: oklch(0.9374064828896956 0.0035614326327228986 78.29695339492076);
|
|
195
|
+
--nsw-aboriginal-grey-200: oklch(0.9165419771862608 0.004595396945448901 78.29695339492076);
|
|
196
|
+
--nsw-aboriginal-grey-250: oklch(0.8949688443848074 0.005626888799288963 72.79487392970944);
|
|
197
|
+
--nsw-aboriginal-grey-300: oklch(0.8733957115833539 0.006658380653129026 67.29279446449813);
|
|
198
|
+
--nsw-aboriginal-grey-350: oklch(0.8518225787819006 0.007689872506969089 61.79071499928681);
|
|
199
|
+
--nsw-aboriginal-grey-400: oklch(0.8302494459804471 0.00872136436080915 56.288635534075496);
|
|
200
|
+
--nsw-aboriginal-grey-450: oklch(0.7350703829754051 0.006541023270606863 56.288635534075496);
|
|
201
|
+
--nsw-aboriginal-grey-500: oklch(0.6398913199703631 0.004360682180404575 56.288635534075496);
|
|
202
|
+
--nsw-aboriginal-grey-550: oklch(0.544712256965321 0.0021803410902022876 56.288635534075496);
|
|
203
|
+
--nsw-aboriginal-grey-600: oklch(0.4495331939602789 0 none);
|
|
204
|
+
--nsw-aboriginal-grey-650: oklch(0.4114406365077532 0 none);
|
|
205
|
+
--nsw-aboriginal-grey-700: oklch(0.3733480790552275 0 none);
|
|
206
|
+
--nsw-aboriginal-grey-750: oklch(0.3352555216027018 0 none);
|
|
207
|
+
--nsw-aboriginal-grey-800: oklch(0.29716296415017607 0 none);
|
|
208
|
+
--nsw-aboriginal-grey-850: oklch(0.24515944542389526 0 none);
|
|
209
|
+
--nsw-aboriginal-grey-900: oklch(0.19315592669761444 0 none);
|
|
210
|
+
--nsw-aboriginal-grey-950: oklch(0.14115240797133363 0 none);
|
|
211
|
+
--nsw-aboriginal-red-50: oklch(0.978848545028836 0.013064906949875194 17.91008855652266);
|
|
212
|
+
--nsw-aboriginal-red-100: oklch(0.9576970900576719 0.022109842530558015 17.91008855652266);
|
|
213
|
+
--nsw-aboriginal-red-150: oklch(0.9365456350865078 0.031154778111240837 17.91008855652266);
|
|
214
|
+
--nsw-aboriginal-red-200: oklch(0.9153941801153438 0.04019971369192366 17.91008855652266);
|
|
215
|
+
--nsw-aboriginal-red-250: oklch(0.8955549511653824 0.05093833595471205 18.4044656497934);
|
|
216
|
+
--nsw-aboriginal-red-300: oklch(0.875715722215421 0.06167695821750044 18.898842743064147);
|
|
217
|
+
--nsw-aboriginal-red-350: oklch(0.8558764932654596 0.07241558048028882 19.393219836334893);
|
|
218
|
+
--nsw-aboriginal-red-400: oklch(0.8360372643154982 0.08315420274307721 19.887596929605635);
|
|
219
|
+
--nsw-aboriginal-red-450: oklch(0.7733920694093943 0.11749463840365235 22.199733756281407);
|
|
220
|
+
--nsw-aboriginal-red-500: oklch(0.7107468745032904 0.15183507406422747 24.51187058295718);
|
|
221
|
+
--nsw-aboriginal-red-550: oklch(0.6481016795971866 0.1861755097248026 26.824007409632948);
|
|
222
|
+
--nsw-aboriginal-red-600: oklch(0.5854564846910827 0.22051594538537772 29.13614423630872);
|
|
223
|
+
--nsw-aboriginal-red-650: oklch(0.5451949665626711 0.20759504477588905 29.116922576503878);
|
|
224
|
+
--nsw-aboriginal-red-700: oklch(0.5049334484342595 0.1946741441664004 29.09770091669904);
|
|
225
|
+
--nsw-aboriginal-red-750: oklch(0.4646719303058479 0.1817532435569117 29.078479256894198);
|
|
226
|
+
--nsw-aboriginal-red-800: oklch(0.4244104121774363 0.16883234294742303 29.059257597089356);
|
|
227
|
+
--nsw-aboriginal-red-850: oklch(0.3501385900463849 0.14350749150530956 29.059257597089356);
|
|
228
|
+
--nsw-aboriginal-red-900: oklch(0.2758667679153336 0.11818264006319612 29.059257597089356);
|
|
229
|
+
--nsw-aboriginal-red-950: oklch(0.20159494578428225 0.09285778862108267 29.059257597089356);
|
|
230
|
+
--nsw-aboriginal-orange-50: oklch(0.9738855126989008 0.016602591530904584 52.55546216454561);
|
|
231
|
+
--nsw-aboriginal-orange-100: oklch(0.9477710253978014 0.028096693359992375 52.55546216454561);
|
|
232
|
+
--nsw-aboriginal-orange-150: oklch(0.9216565380967021 0.039590795189080166 52.55546216454561);
|
|
233
|
+
--nsw-aboriginal-orange-200: oklch(0.8955420507956029 0.05108489701816796 52.55546216454561);
|
|
234
|
+
--nsw-aboriginal-orange-250: oklch(0.8714459985514821 0.06477537243882539 52.40983339193463);
|
|
235
|
+
--nsw-aboriginal-orange-300: oklch(0.8473499463073613 0.07846584785948284 52.264204619323664);
|
|
236
|
+
--nsw-aboriginal-orange-350: oklch(0.8232538940632406 0.09215632328014028 52.11857584671269);
|
|
237
|
+
--nsw-aboriginal-orange-400: oklch(0.7991578418191198 0.10584679870079772 51.97294707410171);
|
|
238
|
+
--nsw-aboriginal-orange-450: oklch(0.7660019575057643 0.12652886278666134 49.87887684512948);
|
|
239
|
+
--nsw-aboriginal-orange-500: oklch(0.7328460731924087 0.14721092687252496 47.784806616157255);
|
|
240
|
+
--nsw-aboriginal-orange-550: oklch(0.6996901888790532 0.16789299095838855 45.69073638718503);
|
|
241
|
+
--nsw-aboriginal-orange-600: oklch(0.6665343045656977 0.18857505504425218 43.5966661582128);
|
|
242
|
+
--nsw-aboriginal-orange-650: oklch(0.6048689295059245 0.17619193861850896 42.06662366880586);
|
|
243
|
+
--nsw-aboriginal-orange-700: oklch(0.5432035544461513 0.16380882219276577 40.53658117939892);
|
|
244
|
+
--nsw-aboriginal-orange-750: oklch(0.48153817938637805 0.15142570576702258 39.00653868999199);
|
|
245
|
+
--nsw-aboriginal-orange-800: oklch(0.41987280432660484 0.13904258934127936 37.47649620058505);
|
|
246
|
+
--nsw-aboriginal-orange-850: oklch(0.346395063569449 0.11818620094008746 37.47649620058505);
|
|
247
|
+
--nsw-aboriginal-orange-900: oklch(0.27291732281229314 0.09732981253889555 37.47649620058505);
|
|
248
|
+
--nsw-aboriginal-orange-950: oklch(0.1994395820551373 0.07647342413770365 37.47649620058505);
|
|
249
|
+
--nsw-aboriginal-brown-50: oklch(0.9637894047428377 0.015576586829445453 55.65798606883124);
|
|
250
|
+
--nsw-aboriginal-brown-100: oklch(0.9275788094856755 0.02636037771136923 55.65798606883124);
|
|
251
|
+
--nsw-aboriginal-brown-150: oklch(0.8913682142285133 0.037144168593293 55.65798606883124);
|
|
252
|
+
--nsw-aboriginal-brown-200: oklch(0.855157618971351 0.04792795947521678 55.65798606883124);
|
|
253
|
+
--nsw-aboriginal-brown-250: oklch(0.819495130372929 0.060854957675237686 55.274819963495716);
|
|
254
|
+
--nsw-aboriginal-brown-300: oklch(0.783832641774507 0.07378195587525858 54.8916538581602);
|
|
255
|
+
--nsw-aboriginal-brown-350: oklch(0.7481701531760849 0.0867089540752795 54.50848775282467);
|
|
256
|
+
--nsw-aboriginal-brown-400: oklch(0.7125076645776629 0.0996359522753004 54.125321647489145);
|
|
257
|
+
--nsw-aboriginal-brown-450: oklch(0.6658642886991106 0.10220482966257746 51.472089235271014);
|
|
258
|
+
--nsw-aboriginal-brown-500: oklch(0.6192209128205584 0.10477370704985453 48.81885682305288);
|
|
259
|
+
--nsw-aboriginal-brown-550: oklch(0.5725775369420062 0.1073425844371316 46.165624410834745);
|
|
260
|
+
--nsw-aboriginal-brown-600: oklch(0.5259341610634539 0.10991146182440867 43.512391998616614);
|
|
261
|
+
--nsw-aboriginal-brown-650: oklch(0.4745053224355554 0.10391808522528324 43.80561561418423);
|
|
262
|
+
--nsw-aboriginal-brown-700: oklch(0.42307648380765683 0.09792470862615782 44.09883922975184);
|
|
263
|
+
--nsw-aboriginal-brown-750: oklch(0.37164764517975835 0.09193133202703241 44.39206284531945);
|
|
264
|
+
--nsw-aboriginal-brown-800: oklch(0.3202188065518598 0.08593795542790698 44.68528646088706);
|
|
265
|
+
--nsw-aboriginal-brown-850: oklch(0.2641805154052843 0.07304726211372094 44.68528646088706);
|
|
266
|
+
--nsw-aboriginal-brown-900: oklch(0.20814222425870887 0.06015656879953489 44.68528646088706);
|
|
267
|
+
--nsw-aboriginal-brown-950: oklch(0.15210393311213338 0.04726587548534884 44.68528646088706);
|
|
268
|
+
--nsw-aboriginal-yellow-50: oklch(0.989587621092196 0.019103088481096563 92.48002960723814);
|
|
269
|
+
--nsw-aboriginal-yellow-100: oklch(0.979175242184392 0.03232830358339418 92.48002960723814);
|
|
270
|
+
--nsw-aboriginal-yellow-150: oklch(0.9687628632765881 0.0455535186856918 92.48002960723814);
|
|
271
|
+
--nsw-aboriginal-yellow-200: oklch(0.9583504843687841 0.05877873378798942 92.48002960723814);
|
|
272
|
+
--nsw-aboriginal-yellow-250: oklch(0.9491347371136292 0.07198796755327139 92.7305165933987);
|
|
273
|
+
--nsw-aboriginal-yellow-300: oklch(0.9399189898584743 0.08519720131855335 92.98100357955929);
|
|
274
|
+
--nsw-aboriginal-yellow-350: oklch(0.9307032426033194 0.09840643508383531 93.23149056571987);
|
|
275
|
+
--nsw-aboriginal-yellow-400: oklch(0.9214874953481644 0.11161566884911728 93.48197755188043);
|
|
276
|
+
--nsw-aboriginal-yellow-450: oklch(0.8910195189839808 0.12436290150788638 87.85568397462671);
|
|
277
|
+
--nsw-aboriginal-yellow-500: oklch(0.8605515426197972 0.1371101341666555 82.22939039737301);
|
|
278
|
+
--nsw-aboriginal-yellow-550: oklch(0.8300835662556136 0.1498573668254246 76.60309682011929);
|
|
279
|
+
--nsw-aboriginal-yellow-600: oklch(0.79961558989143 0.1626045994841937 70.97680324286557);
|
|
280
|
+
--nsw-aboriginal-yellow-650: oklch(0.7283788119804733 0.14880860016855085 72.64225880919277);
|
|
281
|
+
--nsw-aboriginal-yellow-700: oklch(0.6571420340695165 0.13501260085290803 74.30771437551996);
|
|
282
|
+
--nsw-aboriginal-yellow-750: oklch(0.5859052561585598 0.1212166015372652 75.97316994184717);
|
|
283
|
+
--nsw-aboriginal-yellow-800: oklch(0.5146684782476031 0.10742060222162236 77.63862550817437);
|
|
284
|
+
--nsw-aboriginal-yellow-850: oklch(0.42460149455427254 0.09130751188837902 77.63862550817437);
|
|
285
|
+
--nsw-aboriginal-yellow-900: oklch(0.334534510860942 0.07519442155513566 77.63862550817437);
|
|
286
|
+
--nsw-aboriginal-yellow-950: oklch(0.24446752716761147 0.059081331221892304 77.63862550817437);
|
|
287
|
+
--nsw-aboriginal-green-50: oklch(0.9775400515432829 0.010033373009012674 131.56364967590204);
|
|
288
|
+
--nsw-aboriginal-green-100: oklch(0.9550801030865659 0.016979554322944526 131.56364967590204);
|
|
289
|
+
--nsw-aboriginal-green-150: oklch(0.9326201546298487 0.023925735636876375 131.56364967590204);
|
|
290
|
+
--nsw-aboriginal-green-200: oklch(0.9101602061731316 0.030871916950808227 131.56364967590204);
|
|
291
|
+
--nsw-aboriginal-green-250: oklch(0.8874934999312177 0.03857982981011093 131.78279512830795);
|
|
292
|
+
--nsw-aboriginal-green-300: oklch(0.8648267936893037 0.04628774266941364 132.0019405807139);
|
|
293
|
+
--nsw-aboriginal-green-350: oklch(0.8421600874473898 0.053995655528716345 132.22108603311983);
|
|
294
|
+
--nsw-aboriginal-green-400: oklch(0.8194933812054759 0.061703568388019055 132.44023148552574);
|
|
295
|
+
--nsw-aboriginal-green-450: oklch(0.7793221671789816 0.078504962905952 131.72356982833844);
|
|
296
|
+
--nsw-aboriginal-green-500: oklch(0.7391509531524875 0.09530635742388496 131.0069081711511);
|
|
297
|
+
--nsw-aboriginal-green-550: oklch(0.6989797391259933 0.11210775194181792 130.29024651396378);
|
|
298
|
+
--nsw-aboriginal-green-600: oklch(0.658808525099499 0.12890914645975088 129.57358485677648);
|
|
299
|
+
--nsw-aboriginal-green-650: oklch(0.5974184207826408 0.11760535943305413 135.2430093260659);
|
|
300
|
+
--nsw-aboriginal-green-700: oklch(0.5360283164657826 0.10630157240635738 140.91243379535533);
|
|
301
|
+
--nsw-aboriginal-green-750: oklch(0.47463821214892454 0.09499778537966062 146.58185826464475);
|
|
302
|
+
--nsw-aboriginal-green-800: oklch(0.41324810783206634 0.08369399835296387 152.25128273393418);
|
|
303
|
+
--nsw-aboriginal-green-850: oklch(0.3409296889614547 0.07113989860001929 152.25128273393418);
|
|
304
|
+
--nsw-aboriginal-green-900: oklch(0.2686112700908431 0.05858579884707471 152.25128273393418);
|
|
305
|
+
--nsw-aboriginal-green-950: oklch(0.1962928512202315 0.04603169909413013 152.25128273393418);
|
|
306
|
+
--nsw-aboriginal-blue-50: oklch(0.9726963960813712 0.01158607281784324 209.8212580578204);
|
|
307
|
+
--nsw-aboriginal-blue-100: oklch(0.9453927921627423 0.019607200153273174 209.8212580578204);
|
|
308
|
+
--nsw-aboriginal-blue-150: oklch(0.9180891882441133 0.027628327488703107 209.8212580578204);
|
|
309
|
+
--nsw-aboriginal-blue-200: oklch(0.8907855843254845 0.035649454824133044 209.8212580578204);
|
|
310
|
+
--nsw-aboriginal-blue-250: oklch(0.8640751367196432 0.04375221215713473 209.95866132774938);
|
|
311
|
+
--nsw-aboriginal-blue-300: oklch(0.8373646891138018 0.05185496949013642 210.09606459767838);
|
|
312
|
+
--nsw-aboriginal-blue-350: oklch(0.8106542415079605 0.0599577268231381 210.23346786760737);
|
|
313
|
+
--nsw-aboriginal-blue-400: oklch(0.7839437939021192 0.06806048415613979 210.37087113753637);
|
|
314
|
+
--nsw-aboriginal-blue-450: oklch(0.7096613718024245 0.0763659542620009 216.89866687611752);
|
|
315
|
+
--nsw-aboriginal-blue-500: oklch(0.6353789497027299 0.08467142436786204 223.42646261469866);
|
|
316
|
+
--nsw-aboriginal-blue-550: oklch(0.5610965276030352 0.09297689447372316 229.9542583532798);
|
|
317
|
+
--nsw-aboriginal-blue-600: oklch(0.48681410550334053 0.10128236457958428 236.48205409186096);
|
|
318
|
+
--nsw-aboriginal-blue-650: oklch(0.43774688628471914 0.09607362828959434 243.31473157010598);
|
|
319
|
+
--nsw-aboriginal-blue-700: oklch(0.3886796670660978 0.09086489199960439 250.147409048351);
|
|
320
|
+
--nsw-aboriginal-blue-750: oklch(0.3396124478474764 0.08565615570961443 256.980086526596);
|
|
321
|
+
--nsw-aboriginal-blue-800: oklch(0.290545228628855 0.0804474194196245 263.81276400484103);
|
|
322
|
+
--nsw-aboriginal-blue-850: oklch(0.23969981361880538 0.06838030650668082 263.81276400484103);
|
|
323
|
+
--nsw-aboriginal-blue-900: oklch(0.18885439860875575 0.05631319359373715 263.81276400484103);
|
|
324
|
+
--nsw-aboriginal-blue-950: oklch(0.13800898359870611 0.04424608068079347 263.81276400484103);
|
|
325
|
+
--nsw-aboriginal-purple-50: oklch(0.9677519235816936 0.01225423399018933 331.39469318233586);
|
|
326
|
+
--nsw-aboriginal-purple-100: oklch(0.9355038471633873 0.020737934444935786 331.39469318233586);
|
|
327
|
+
--nsw-aboriginal-purple-150: oklch(0.903255770745081 0.02922163489968224 331.39469318233586);
|
|
328
|
+
--nsw-aboriginal-purple-200: oklch(0.8710076943267746 0.0377053353544287 331.39469318233586);
|
|
329
|
+
--nsw-aboriginal-purple-250: oklch(0.8389191100209297 0.04764157951006853 331.4172179039917);
|
|
330
|
+
--nsw-aboriginal-purple-300: oklch(0.8068305257150847 0.05757782366570837 331.4397426256475);
|
|
331
|
+
--nsw-aboriginal-purple-350: oklch(0.7747419414092399 0.06751406782134821 331.46226734730334);
|
|
332
|
+
--nsw-aboriginal-purple-400: oklch(0.742653357103395 0.07745031197698804 331.48479206895917);
|
|
333
|
+
--nsw-aboriginal-purple-450: oklch(0.6987279730890662 0.08461715270888535 331.3997569775923);
|
|
334
|
+
--nsw-aboriginal-purple-500: oklch(0.6548025890747375 0.09178399344078267 331.31472188622536);
|
|
335
|
+
--nsw-aboriginal-purple-550: oklch(0.6108772050604088 0.09895083417268 331.2296867948585);
|
|
336
|
+
--nsw-aboriginal-purple-600: oklch(0.56695182104608 0.10611767490457731 331.1446517034916);
|
|
337
|
+
--nsw-aboriginal-purple-650: oklch(0.5059681066477375 0.09597195429905764 331.53840819994554);
|
|
338
|
+
--nsw-aboriginal-purple-700: oklch(0.4449843922493949 0.08582623369353798 331.93216469639947);
|
|
339
|
+
--nsw-aboriginal-purple-750: oklch(0.38400067785105235 0.07568051308801832 332.32592119285346);
|
|
340
|
+
--nsw-aboriginal-purple-800: oklch(0.3230169634527098 0.06553479248249865 332.7196776893074);
|
|
341
|
+
--nsw-aboriginal-purple-850: oklch(0.2664889948484856 0.05570457361012385 332.7196776893074);
|
|
342
|
+
--nsw-aboriginal-purple-900: oklch(0.20996102624426138 0.04587435473774905 332.7196776893074);
|
|
343
|
+
--nsw-aboriginal-purple-950: oklch(0.15343305764003715 0.036044135865374256 332.7196776893074);
|
|
192
344
|
}
|