@nswds/tokens 2.0.0 → 2.1.1
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/.github/workflows/opencommit.yml +36 -0
- package/.github/workflows/release.yml +30 -0
- package/.prettierignore +18 -0
- package/.prettierrc +8 -0
- package/CHANGELOG.md +37 -0
- package/README.md +2 -1
- package/dist/css/colors/global/hex.css +191 -191
- package/dist/css/colors/global/hsl.css +191 -191
- package/dist/css/colors/global/oklch.css +191 -191
- package/dist/css/colors/global/rgb.css +191 -191
- package/dist/css/colors/themes/masterbrand/hex.css +1 -2
- package/dist/css/colors/themes/masterbrand/hsl.css +1 -2
- package/dist/css/colors/themes/masterbrand/oklch.css +1 -2
- package/dist/css/colors/themes/masterbrand/rgb.css +1 -2
- package/dist/js/colors/global/hex.js +191 -191
- package/dist/js/colors/global/hsl.js +191 -191
- package/dist/js/colors/global/oklch.js +191 -191
- package/dist/js/colors/global/rgb.js +191 -191
- package/dist/js/colors/themes/masterbrand/hex.js +57 -57
- package/dist/js/colors/themes/masterbrand/hsl.js +57 -57
- package/dist/js/colors/themes/masterbrand/oklch.js +57 -57
- package/dist/js/colors/themes/masterbrand/rgb.js +57 -57
- package/dist/scss/colors/global/hex.scss +1 -1
- package/dist/scss/colors/global/hsl.scss +1 -1
- package/dist/scss/colors/global/oklch.scss +1 -1
- package/dist/scss/colors/global/rgb.scss +1 -1
- package/dist/scss/colors/themes/masterbrand/hex.scss +1 -1
- package/dist/scss/colors/themes/masterbrand/hsl.scss +1 -1
- package/dist/scss/colors/themes/masterbrand/oklch.scss +1 -1
- package/dist/scss/colors/themes/masterbrand/rgb.scss +1 -1
- package/dist/tailwind/colors/global/hex.css +191 -191
- package/dist/tailwind/colors/global/hsl.css +191 -191
- package/dist/tailwind/colors/global/oklch.css +191 -191
- package/dist/tailwind/colors/global/rgb.css +191 -191
- package/dist/tailwind/colors/themes/masterbrand/hex.css +1 -1
- package/dist/tailwind/colors/themes/masterbrand/hsl.css +1 -1
- package/dist/tailwind/colors/themes/masterbrand/oklch.css +1 -1
- package/dist/tailwind/colors/themes/masterbrand/rgb.css +1 -1
- package/dist/ts/colors/global/hex.ts +1 -1
- package/dist/ts/colors/global/hsl.ts +1 -1
- package/dist/ts/colors/global/oklch.ts +1 -1
- package/dist/ts/colors/global/rgb.ts +1 -1
- package/dist/ts/colors/themes/masterbrand/hex.ts +57 -57
- package/dist/ts/colors/themes/masterbrand/hsl.ts +57 -57
- package/dist/ts/colors/themes/masterbrand/oklch.ts +57 -57
- package/dist/ts/colors/themes/masterbrand/rgb.ts +57 -57
- package/eslint.config.js +20 -0
- package/package.json +17 -32
- package/release.config.mjs +24 -0
- package/tokens/global/color/hex.json +1 -1
- package/tokens/global/color/hsl.json +191 -951
- package/tokens/global/color/oklch.json +191 -951
- package/tokens/global/color/rgb.json +1541 -2301
- package/tokens/themes/masterbrand/color/hex.json +1 -1
- package/tokens/themes/masterbrand/color/hsl.json +465 -689
- package/tokens/themes/masterbrand/color/oklch.json +57 -281
- package/tokens/themes/masterbrand/color/rgb.json +465 -689
|
@@ -1,192 +1,192 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
}
|
|
2
|
+
--nsw-grey-50: hsl(223.81, 0%, 98.03%);
|
|
3
|
+
--nsw-grey-100: hsl(223.81, 0%, 96.07%);
|
|
4
|
+
--nsw-grey-150: hsl(223.81, 0%, 94.11%);
|
|
5
|
+
--nsw-grey-200: hsl(223.81, 0%, 92.16%);
|
|
6
|
+
--nsw-grey-250: hsl(303.31, 2.25%, 89.74%);
|
|
7
|
+
--nsw-grey-300: hsl(250.59, 4.53%, 87.59%);
|
|
8
|
+
--nsw-grey-350: hsl(218.09, 8.07%, 85.12%);
|
|
9
|
+
--nsw-grey-400: hsl(200, 9.92%, 82.16%);
|
|
10
|
+
--nsw-grey-450: hsl(200.47, 6.04%, 68.52%);
|
|
11
|
+
--nsw-grey-500: hsl(200.94, 4.51%, 55.36%);
|
|
12
|
+
--nsw-grey-550: hsl(201.39, 4.92%, 42.76%);
|
|
13
|
+
--nsw-grey-600: hsl(201.82, 7.01%, 30.78%);
|
|
14
|
+
--nsw-grey-650: hsl(203.03, 7.75%, 26.7%);
|
|
15
|
+
--nsw-grey-700: hsl(204.24, 8.69%, 22.72%);
|
|
16
|
+
--nsw-grey-750: hsl(205.45, 9.95%, 18.85%);
|
|
17
|
+
--nsw-grey-800: hsl(206.66, 11.73%, 15.1%);
|
|
18
|
+
--nsw-grey-850: hsl(206.65, 13.42%, 10.7%);
|
|
19
|
+
--nsw-grey-900: hsl(206.64, 17.08%, 6.52%);
|
|
20
|
+
--nsw-grey-950: hsl(208.68, 23.56%, 2.8%);
|
|
21
|
+
--nsw-green-50: hsl(126.92, 92.47%, 97.87%);
|
|
22
|
+
--nsw-green-100: hsl(127.17, 81.74%, 95.92%);
|
|
23
|
+
--nsw-green-150: hsl(127.44, 77.76%, 93.95%);
|
|
24
|
+
--nsw-green-200: hsl(127.73, 75.6%, 91.95%);
|
|
25
|
+
--nsw-green-250: hsl(128.12, 71.21%, 88.91%);
|
|
26
|
+
--nsw-green-300: hsl(128.55, 68.63%, 85.81%);
|
|
27
|
+
--nsw-green-350: hsl(129.03, 66.92%, 82.65%);
|
|
28
|
+
--nsw-green-400: hsl(129.57, 65.73%, 79.41%);
|
|
29
|
+
--nsw-green-450: hsl(130.49, 54.37%, 70.18%);
|
|
30
|
+
--nsw-green-500: hsl(131.92, 48.77%, 60.63%);
|
|
31
|
+
--nsw-green-550: hsl(134.54, 46.29%, 50.21%);
|
|
32
|
+
--nsw-green-600: hsl(144.36, 100%, 33.32%);
|
|
33
|
+
--nsw-green-650: hsl(139.28, 91%, 29.11%);
|
|
34
|
+
--nsw-green-700: hsl(134.24, 89.07%, 23.77%);
|
|
35
|
+
--nsw-green-750: hsl(128, 92.42%, 18.07%);
|
|
36
|
+
--nsw-green-800: hsl(120.02, 99.95%, 12.55%);
|
|
37
|
+
--nsw-green-850: hsl(120.42, 100%, 8.99%);
|
|
38
|
+
--nsw-green-900: hsl(120.78, 100%, 5.85%);
|
|
39
|
+
--nsw-green-950: hsl(121.18, 100%, 3.07%);
|
|
40
|
+
--nsw-teal-50: hsl(171.22, 56.09%, 96.73%);
|
|
41
|
+
--nsw-teal-100: hsl(171.38, 49.46%, 93.72%);
|
|
42
|
+
--nsw-teal-150: hsl(171.55, 47.16%, 90.69%);
|
|
43
|
+
--nsw-teal-200: hsl(171.73, 46.01%, 87.65%);
|
|
44
|
+
--nsw-teal-250: hsl(176, 49.1%, 83.58%);
|
|
45
|
+
--nsw-teal-300: hsl(180.06, 50.94%, 79.35%);
|
|
46
|
+
--nsw-teal-350: hsl(183.68, 57.17%, 75.79%);
|
|
47
|
+
--nsw-teal-400: hsl(186.74, 63.11%, 72.35%);
|
|
48
|
+
--nsw-teal-450: hsl(187.41, 48.13%, 63.4%);
|
|
49
|
+
--nsw-teal-500: hsl(188, 39.25%, 54.56%);
|
|
50
|
+
--nsw-teal-550: hsl(188.48, 39.7%, 45.78%);
|
|
51
|
+
--nsw-teal-600: hsl(188.75, 51.08%, 36.86%);
|
|
52
|
+
--nsw-teal-650: hsl(188.61, 53.9%, 31.46%);
|
|
53
|
+
--nsw-teal-700: hsl(188.45, 57.82%, 26.19%);
|
|
54
|
+
--nsw-teal-750: hsl(188.25, 63.64%, 21.07%);
|
|
55
|
+
--nsw-teal-800: hsl(188, 73.24%, 16.07%);
|
|
56
|
+
--nsw-teal-850: hsl(187.98, 84.98%, 11.27%);
|
|
57
|
+
--nsw-teal-900: hsl(188.56, 96.08%, 7.25%);
|
|
58
|
+
--nsw-teal-950: hsl(190.58, 100%, 3.88%);
|
|
59
|
+
--nsw-blue-50: hsl(199.45, 100%, 97.34%);
|
|
60
|
+
--nsw-blue-100: hsl(199.38, 100%, 94.73%);
|
|
61
|
+
--nsw-blue-150: hsl(199.29, 95.95%, 92.09%);
|
|
62
|
+
--nsw-blue-200: hsl(199.2, 92.7%, 89.41%);
|
|
63
|
+
--nsw-blue-250: hsl(198.5, 96.92%, 86.75%);
|
|
64
|
+
--nsw-blue-300: hsl(197.77, 99.01%, 83.9%);
|
|
65
|
+
--nsw-blue-350: hsl(197, 99.86%, 80.82%);
|
|
66
|
+
--nsw-blue-400: hsl(196.18, 99.98%, 77.46%);
|
|
67
|
+
--nsw-blue-450: hsl(199.75, 99.81%, 67.58%);
|
|
68
|
+
--nsw-blue-500: hsl(202.53, 100%, 57.56%);
|
|
69
|
+
--nsw-blue-550: hsl(204.78, 100%, 47%);
|
|
70
|
+
--nsw-blue-600: hsl(217.35, 98.29%, 53.54%);
|
|
71
|
+
--nsw-blue-650: hsl(216.77, 89.39%, 43.99%);
|
|
72
|
+
--nsw-blue-700: hsl(216.29, 94.12%, 35.01%);
|
|
73
|
+
--nsw-blue-750: hsl(216.37, 97.67%, 26.93%);
|
|
74
|
+
--nsw-blue-800: hsl(217.2, 100%, 19.61%);
|
|
75
|
+
--nsw-blue-850: hsl(218.95, 100%, 14.93%);
|
|
76
|
+
--nsw-blue-900: hsl(222.31, 100%, 10.59%);
|
|
77
|
+
--nsw-blue-950: hsl(228.65, 100%, 6.6%);
|
|
78
|
+
--nsw-purple-50: hsl(250, 100%, 98.76%);
|
|
79
|
+
--nsw-purple-100: hsl(250.23, 100%, 97.1%);
|
|
80
|
+
--nsw-purple-150: hsl(250.46, 93.55%, 95.42%);
|
|
81
|
+
--nsw-purple-200: hsl(250.71, 87.63%, 93.73%);
|
|
82
|
+
--nsw-purple-250: hsl(251.52, 93.9%, 92.24%);
|
|
83
|
+
--nsw-purple-300: hsl(252.35, 97.36%, 90.69%);
|
|
84
|
+
--nsw-purple-350: hsl(253.2, 99.18%, 89.1%);
|
|
85
|
+
--nsw-purple-400: hsl(254.06, 99.98%, 87.45%);
|
|
86
|
+
--nsw-purple-450: hsl(253.9, 94.11%, 82.01%);
|
|
87
|
+
--nsw-purple-500: hsl(254.11, 90.13%, 76.39%);
|
|
88
|
+
--nsw-purple-550: hsl(254.88, 87.1%, 70.46%);
|
|
89
|
+
--nsw-purple-600: hsl(256.54, 84.77%, 63.92%);
|
|
90
|
+
--nsw-purple-650: hsl(260.32, 59.16%, 53.67%);
|
|
91
|
+
--nsw-purple-700: hsl(264.12, 55.46%, 43.83%);
|
|
92
|
+
--nsw-purple-750: hsl(268.01, 62.03%, 34.39%);
|
|
93
|
+
--nsw-purple-800: hsl(272.2, 73.61%, 25.3%);
|
|
94
|
+
--nsw-purple-850: hsl(272.74, 82.65%, 18.56%);
|
|
95
|
+
--nsw-purple-900: hsl(272.45, 92.74%, 12.65%);
|
|
96
|
+
--nsw-purple-950: hsl(269.95, 100%, 7.66%);
|
|
97
|
+
--nsw-fuchsia-50: hsl(322.14, 100%, 98.49%);
|
|
98
|
+
--nsw-fuchsia-100: hsl(321.86, 100%, 96.73%);
|
|
99
|
+
--nsw-fuchsia-150: hsl(321.58, 93.8%, 94.94%);
|
|
100
|
+
--nsw-fuchsia-200: hsl(321.29, 88.4%, 93.13%);
|
|
101
|
+
--nsw-fuchsia-250: hsl(319.35, 84.33%, 90.79%);
|
|
102
|
+
--nsw-fuchsia-300: hsl(317.37, 80.64%, 88.37%);
|
|
103
|
+
--nsw-fuchsia-350: hsl(315.37, 77.26%, 85.89%);
|
|
104
|
+
--nsw-fuchsia-400: hsl(313.33, 74.12%, 83.33%);
|
|
105
|
+
--nsw-fuchsia-450: hsl(314.15, 73.33%, 76.26%);
|
|
106
|
+
--nsw-fuchsia-500: hsl(314.67, 72.14%, 68.63%);
|
|
107
|
+
--nsw-fuchsia-550: hsl(314.69, 71.13%, 59.87%);
|
|
108
|
+
--nsw-fuchsia-600: hsl(312.97, 84.59%, 46.1%);
|
|
109
|
+
--nsw-fuchsia-650: hsl(313.18, 88.3%, 38.88%);
|
|
110
|
+
--nsw-fuchsia-700: hsl(313.38, 92.82%, 31.97%);
|
|
111
|
+
--nsw-fuchsia-750: hsl(313.72, 96.76%, 25.63%);
|
|
112
|
+
--nsw-fuchsia-800: hsl(314.26, 99.98%, 19.81%);
|
|
113
|
+
--nsw-fuchsia-850: hsl(314.51, 100%, 14.68%);
|
|
114
|
+
--nsw-fuchsia-900: hsl(315.33, 100%, 10.15%);
|
|
115
|
+
--nsw-fuchsia-950: hsl(317.48, 100%, 6.11%);
|
|
116
|
+
--nsw-red-50: hsl(350.85, 100%, 98.97%);
|
|
117
|
+
--nsw-red-100: hsl(350.7, 100%, 97.7%);
|
|
118
|
+
--nsw-red-150: hsl(350.55, 100%, 96.41%);
|
|
119
|
+
--nsw-red-200: hsl(350.4, 99.99%, 95.1%);
|
|
120
|
+
--nsw-red-250: hsl(350.92, 100%, 92.95%);
|
|
121
|
+
--nsw-red-300: hsl(351.43, 100%, 90.72%);
|
|
122
|
+
--nsw-red-350: hsl(351.92, 100%, 88.44%);
|
|
123
|
+
--nsw-red-400: hsl(352.39, 99.97%, 86.08%);
|
|
124
|
+
--nsw-red-450: hsl(353.39, 86.95%, 78.18%);
|
|
125
|
+
--nsw-red-500: hsl(353.95, 78.84%, 69.69%);
|
|
126
|
+
--nsw-red-550: hsl(353.52, 73.18%, 60.13%);
|
|
127
|
+
--nsw-red-600: hsl(348.56, 82.17%, 46.29%);
|
|
128
|
+
--nsw-red-650: hsl(347.26, 85.88%, 38.93%);
|
|
129
|
+
--nsw-red-700: hsl(345.89, 90.98%, 31.82%);
|
|
130
|
+
--nsw-red-750: hsl(345, 95.86%, 25.31%);
|
|
131
|
+
--nsw-red-800: hsl(344.84, 100%, 19.41%);
|
|
132
|
+
--nsw-red-850: hsl(346.11, 100%, 14.46%);
|
|
133
|
+
--nsw-red-900: hsl(349.14, 100%, 10.03%);
|
|
134
|
+
--nsw-red-950: hsl(352.16, 100%, 6.07%);
|
|
135
|
+
--nsw-orange-50: hsl(27.87, 100%, 98.29%);
|
|
136
|
+
--nsw-orange-100: hsl(27.91, 96.94%, 96.64%);
|
|
137
|
+
--nsw-orange-150: hsl(27.95, 91.25%, 94.99%);
|
|
138
|
+
--nsw-orange-200: hsl(28, 88.2%, 93.33%);
|
|
139
|
+
--nsw-orange-250: hsl(28.75, 96.75%, 90.26%);
|
|
140
|
+
--nsw-orange-300: hsl(29.52, 99.72%, 87.03%);
|
|
141
|
+
--nsw-orange-350: hsl(30.32, 100%, 83.61%);
|
|
142
|
+
--nsw-orange-400: hsl(31.18, 100%, 80%);
|
|
143
|
+
--nsw-orange-450: hsl(28.25, 96.79%, 73.01%);
|
|
144
|
+
--nsw-orange-500: hsl(25.49, 94.76%, 66.34%);
|
|
145
|
+
--nsw-orange-550: hsl(22.75, 92.61%, 59.79%);
|
|
146
|
+
--nsw-orange-600: hsl(20, 89.98%, 52.94%);
|
|
147
|
+
--nsw-orange-650: hsl(18.26, 82.62%, 47%);
|
|
148
|
+
--nsw-orange-700: hsl(16.43, 86.72%, 40.94%);
|
|
149
|
+
--nsw-orange-750: hsl(14.39, 93.12%, 34.79%);
|
|
150
|
+
--nsw-orange-800: hsl(10.94, 100%, 29.02%);
|
|
151
|
+
--nsw-orange-850: hsl(9.09, 100%, 21.91%);
|
|
152
|
+
--nsw-orange-900: hsl(5.28, 100%, 15.58%);
|
|
153
|
+
--nsw-orange-950: hsl(2.01, 100%, 9.91%);
|
|
154
|
+
--nsw-yellow-50: hsl(46.46, 100%, 97.31%);
|
|
155
|
+
--nsw-yellow-100: hsl(46.38, 100%, 95.09%);
|
|
156
|
+
--nsw-yellow-150: hsl(46.31, 100%, 92.85%);
|
|
157
|
+
--nsw-yellow-200: hsl(46.25, 99.92%, 90.59%);
|
|
158
|
+
--nsw-yellow-250: hsl(46.32, 98.52%, 88%);
|
|
159
|
+
--nsw-yellow-300: hsl(46.42, 97.52%, 85.35%);
|
|
160
|
+
--nsw-yellow-350: hsl(46.53, 96.75%, 82.63%);
|
|
161
|
+
--nsw-yellow-400: hsl(46.67, 96.12%, 79.82%);
|
|
162
|
+
--nsw-yellow-450: hsl(43.95, 94.26%, 74.28%);
|
|
163
|
+
--nsw-yellow-500: hsl(41.83, 94.17%, 68.55%);
|
|
164
|
+
--nsw-yellow-550: hsl(40.46, 94.83%, 62.03%);
|
|
165
|
+
--nsw-yellow-600: hsl(41.65, 96.35%, 49.93%);
|
|
166
|
+
--nsw-yellow-650: hsl(41.73, 97.79%, 41.95%);
|
|
167
|
+
--nsw-yellow-700: hsl(41.7, 98.85%, 34.42%);
|
|
168
|
+
--nsw-yellow-750: hsl(41.53, 99.58%, 27.3%);
|
|
169
|
+
--nsw-yellow-800: hsl(41.14, 100%, 20.58%);
|
|
170
|
+
--nsw-yellow-850: hsl(40.68, 100%, 15.12%);
|
|
171
|
+
--nsw-yellow-900: hsl(39.24, 100%, 10.36%);
|
|
172
|
+
--nsw-yellow-950: hsl(35.52, 100%, 6.19%);
|
|
173
|
+
--nsw-brown-50: hsl(32.66, 48.62%, 97.07%);
|
|
174
|
+
--nsw-brown-100: hsl(32.68, 41.72%, 94.25%);
|
|
175
|
+
--nsw-brown-150: hsl(32.7, 39.3%, 91.43%);
|
|
176
|
+
--nsw-brown-200: hsl(32.73, 38.03%, 88.63%);
|
|
177
|
+
--nsw-brown-250: hsl(32.48, 43.17%, 86.7%);
|
|
178
|
+
--nsw-brown-300: hsl(32.23, 47.04%, 84.79%);
|
|
179
|
+
--nsw-brown-350: hsl(31.99, 50.07%, 82.88%);
|
|
180
|
+
--nsw-brown-400: hsl(31.77, 52.52%, 80.98%);
|
|
181
|
+
--nsw-brown-450: hsl(31.83, 45.98%, 74.17%);
|
|
182
|
+
--nsw-brown-500: hsl(31.93, 42.13%, 67.41%);
|
|
183
|
+
--nsw-brown-550: hsl(32.1, 39.61%, 60.67%);
|
|
184
|
+
--nsw-brown-600: hsl(32.36, 37.86%, 53.93%);
|
|
185
|
+
--nsw-brown-650: hsl(32.04, 34.92%, 45.3%);
|
|
186
|
+
--nsw-brown-700: hsl(31.77, 38.52%, 36.92%);
|
|
187
|
+
--nsw-brown-750: hsl(31.58, 43.97%, 28.81%);
|
|
188
|
+
--nsw-brown-800: hsl(31.58, 53.25%, 20.99%);
|
|
189
|
+
--nsw-brown-850: hsl(31.74, 60%, 15.18%);
|
|
190
|
+
--nsw-brown-900: hsl(31.73, 72.6%, 9.74%);
|
|
191
|
+
--nsw-brown-950: hsl(27.95, 86.09%, 5.27%);
|
|
192
|
+
}
|