1<===> list/empty/input.scss
2@use 'sass:color';
3a {b: color.hwb(())}
4
5<===> list/empty/error
6Error: Missing element $hue.
7  ,
82 | a {b: color.hwb(())}
9  |       ^^^^^^^^^^^^^
10  '
11  input.scss 2:7  root stylesheet
12
13<===>
14================================================================================
15<===> list/comma_separated/input.scss
16@use 'sass:color';
17a {b: color.hwb((0, 30%, 40%))}
18
19<===> list/comma_separated/error
20Error: $channels must be a space-separated list.
21  ,
222 | a {b: color.hwb((0, 30%, 40%))}
23  |       ^^^^^^^^^^^^^^^^^^^^^^^^
24  '
25  input.scss 2:7  root stylesheet
26
27<===>
28================================================================================
29<===> list/bracketed/input.scss
30@use 'sass:color';
31a {b: color.hwb([0 30% 40%])}
32
33<===> list/bracketed/error
34Error: $channels must be an unbracketed list.
35  ,
362 | a {b: color.hwb([0 30% 40%])}
37  |       ^^^^^^^^^^^^^^^^^^^^^^
38  '
39  input.scss 2:7  root stylesheet
40
41<===>
42================================================================================
43<===> list/one_element/input.scss
44@use 'sass:color';
45a {b: color.hwb(0)}
46
47<===> list/one_element/error
48Error: Missing element $whiteness.
49  ,
502 | a {b: color.hwb(0)}
51  |       ^^^^^^^^^^^^
52  '
53  input.scss 2:7  root stylesheet
54
55<===>
56================================================================================
57<===> list/two_elements/input.scss
58@use 'sass:color';
59a {b: color.hwb(0 30%)}
60
61<===> list/two_elements/error
62Error: Missing element $blackness.
63  ,
642 | a {b: color.hwb(0 30%)}
65  |       ^^^^^^^^^^^^^^^^
66  '
67  input.scss 2:7  root stylesheet
68
69<===>
70================================================================================
71<===> list/four_elements/input.scss
72@use 'sass:color';
73a {b: color.hwb(0 30% 40% 0.4)}
74
75<===> list/four_elements/error
76Error: Only 3 elements allowed, but 4 were passed.
77  ,
782 | a {b: color.hwb(0 30% 40% 0.4)}
79  |       ^^^^^^^^^^^^^^^^^^^^^^^^
80  '
81  input.scss 2:7  root stylesheet
82
83<===>
84================================================================================
85<===> hue/type/input.scss
86@use 'sass:color';
87a {b: color.hwb("foo" 30% 40%)}
88
89<===> hue/type/error
90Error: $hue: "foo" is not a number.
91  ,
922 | a {b: color.hwb("foo" 30% 40%)}
93  |       ^^^^^^^^^^^^^^^^^^^^^^^^
94  '
95  input.scss 2:7  root stylesheet
96
97<===>
98================================================================================
99<===> hue/var/input.scss
100@use 'sass:color';
101a {b: color.hwb(var(--c) 30% 40%)}
102
103<===> hue/var/error
104Error: $hue: var(--c) is not a number.
105  ,
1062 | a {b: color.hwb(var(--c) 30% 40%)}
107  |       ^^^^^^^^^^^^^^^^^^^^^^^^^^^
108  '
109  input.scss 2:7  root stylesheet
110
111<===>
112================================================================================
113<===> whiteness/type/input.scss
114@use 'sass:color';
115a {b: color.hwb(0 "foo" 40%)}
116
117<===> whiteness/type/error
118Error: $whiteness: "foo" is not a number.
119  ,
1202 | a {b: color.hwb(0 "foo" 40%)}
121  |       ^^^^^^^^^^^^^^^^^^^^^^
122  '
123  input.scss 2:7  root stylesheet
124
125<===>
126================================================================================
127<===> whiteness/unit/none/input.scss
128@use 'sass:color';
129a {b: color.hwb(0 30 40%)}
130
131<===> whiteness/unit/none/error
132Error: $whiteness: Expected 30 to have unit "%".
133  ,
1342 | a {b: color.hwb(0 30 40%)}
135  |       ^^^^^^^^^^^^^^^^^^^
136  '
137  input.scss 2:7  root stylesheet
138
139<===>
140================================================================================
141<===> whiteness/unit/wrong/input.scss
142@use 'sass:color';
143a {b: color.hwb(0 30px 40%)}
144
145<===> whiteness/unit/wrong/error
146Error: $whiteness: Expected 30px to have unit "%".
147  ,
1482 | a {b: color.hwb(0 30px 40%)}
149  |       ^^^^^^^^^^^^^^^^^^^^^
150  '
151  input.scss 2:7  root stylesheet
152
153<===>
154================================================================================
155<===> whiteness/too_high/input.scss
156@use 'sass:color';
157a {b: color.hwb(0 101% 40%)}
158
159<===> whiteness/too_high/error
160Error: $whiteness: Expected 101% to be within 0% and 100%.
161  ,
1622 | a {b: color.hwb(0 101% 40%)}
163  |       ^^^^^^^^^^^^^^^^^^^^^
164  '
165  input.scss 2:7  root stylesheet
166
167<===>
168================================================================================
169<===> whiteness/too_low/input.scss
170@use 'sass:color';
171a {b: color.hwb(0 -1% 40%)}
172
173<===> whiteness/too_low/error
174Error: $whiteness: Expected -1% to be within 0% and 100%.
175  ,
1762 | a {b: color.hwb(0 -1% 40%)}
177  |       ^^^^^^^^^^^^^^^^^^^^
178  '
179  input.scss 2:7  root stylesheet
180
181<===>
182================================================================================
183<===> whiteness/var/input.scss
184@use 'sass:color';
185a {b: color.hwb(0 var(--c) 40%)}
186
187<===> whiteness/var/error
188Error: $whiteness: var(--c) is not a number.
189  ,
1902 | a {b: color.hwb(0 var(--c) 40%)}
191  |       ^^^^^^^^^^^^^^^^^^^^^^^^^
192  '
193  input.scss 2:7  root stylesheet
194
195<===>
196================================================================================
197<===> blackness/type/input.scss
198@use 'sass:color';
199a {b: color.hwb(0 30% "foo")}
200
201<===> blackness/type/error
202Error: $blackness: "foo" is not a number.
203  ,
2042 | a {b: color.hwb(0 30% "foo")}
205  |       ^^^^^^^^^^^^^^^^^^^^^^
206  '
207  input.scss 2:7  root stylesheet
208
209<===>
210================================================================================
211<===> blackness/unit/none/input.scss
212@use 'sass:color';
213a {b: color.hwb(0 30% 40)}
214
215<===> blackness/unit/none/error
216Error: $blackness: Expected 40 to have unit "%".
217  ,
2182 | a {b: color.hwb(0 30% 40)}
219  |       ^^^^^^^^^^^^^^^^^^^
220  '
221  input.scss 2:7  root stylesheet
222
223<===>
224================================================================================
225<===> blackness/unit/wrong/input.scss
226@use 'sass:color';
227a {b: color.hwb(0 30% 40px)}
228
229<===> blackness/unit/wrong/error
230Error: $blackness: Expected 40px to have unit "%".
231  ,
2322 | a {b: color.hwb(0 30% 40px)}
233  |       ^^^^^^^^^^^^^^^^^^^^^
234  '
235  input.scss 2:7  root stylesheet
236
237<===>
238================================================================================
239<===> blackness/too_high/input.scss
240@use 'sass:color';
241a {b: color.hwb(0 30% 101%)}
242
243<===> blackness/too_high/error
244Error: $blackness: Expected 101% to be within 0% and 100%.
245  ,
2462 | a {b: color.hwb(0 30% 101%)}
247  |       ^^^^^^^^^^^^^^^^^^^^^
248  '
249  input.scss 2:7  root stylesheet
250
251<===>
252================================================================================
253<===> blackness/too_low/input.scss
254@use 'sass:color';
255a {b: color.hwb(0 30% -1%)}
256
257<===> blackness/too_low/error
258Error: $blackness: Expected -1% to be within 0% and 100%.
259  ,
2602 | a {b: color.hwb(0 30% -1%)}
261  |       ^^^^^^^^^^^^^^^^^^^^
262  '
263  input.scss 2:7  root stylesheet
264
265<===>
266================================================================================
267<===> blackness/var/no_alpha/input.scss
268@use 'sass:color';
269a {b: color.hwb(0 30% var(--c))}
270
271<===> blackness/var/no_alpha/error
272Error: $blackness: var(--c) is not a number.
273  ,
2742 | a {b: color.hwb(0 30% var(--c))}
275  |       ^^^^^^^^^^^^^^^^^^^^^^^^^
276  '
277  input.scss 2:7  root stylesheet
278
279<===>
280================================================================================
281<===> blackness/var/alpha/input.scss
282@use 'sass:color';
283a {b: color.hwb(0 30% var(--c) / 0.5px)}
284
285<===> blackness/var/alpha/error
286Error: Expected numeric channels, got "hwb(0 30% var(--c)/0.5px)".
287  ,
2882 | a {b: color.hwb(0 30% var(--c) / 0.5px)}
289  |       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
290  '
291  input.scss 2:7  root stylesheet
292
293<===>
294================================================================================
295<===> alpha/unit/input.scss
296@use 'sass:color';
297a {b: color.hwb(0 0 0 / 0.5px)}
298
299<===> alpha/unit/error
300Error: $whiteness: Expected 0 to have unit "%".
301  ,
3022 | a {b: color.hwb(0 0 0 / 0.5px)}
303  |       ^^^^^^^^^^^^^^^^^^^^^^^^
304  '
305  input.scss 2:7  root stylesheet
306
307<===>
308================================================================================
309<===> alpha/var/input.scss
310@use 'sass:color';
311a {b: color.hwb(0 0 0 / var(--c))}
312
313<===> alpha/var/error
314Error: Expected numeric channels, got "hwb(0 0 0/var(--c))".
315  ,
3162 | a {b: color.hwb(0 0 0 / var(--c))}
317  |       ^^^^^^^^^^^^^^^^^^^^^^^^^^^
318  '
319  input.scss 2:7  root stylesheet
320
321<===>
322================================================================================
323<===> quoted_var_slash/input.scss
324@use 'sass:color';
325a {b: color.hwb(0 30% "var(--foo) / 0.4")}
326
327<===> quoted_var_slash/error
328Error: $blackness: "var(--foo) / 0.4" is not a number.
329  ,
3302 | a {b: color.hwb(0 30% "var(--foo) / 0.4")}
331  |       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
332  '
333  input.scss 2:7  root stylesheet
334