@@ -315,7 +315,7 @@ Error: Undefined function.
315
315
a {b: color.adjust-hue(#abcdef, 10)}
316
316
317
317
<===> error/adjust_hue/error
318
- Error: The function adjust-hue() isn't in the new module system .
318
+ Error: The function adjust-hue() isn't in the sass:color module.
319
319
320
320
Recommendation: color.adjust(#abcdef, $hue: 10)
321
321
@@ -333,7 +333,7 @@ More info: https://sass-lang.com/documentation/functions/color#adjust-hue
333
333
a {b: color.lighten(#abcdef, 10%)}
334
334
335
335
<===> error/lighten/error
336
- Error: The function lighten() isn't in the new module system .
336
+ Error: The function lighten() isn't in the sass:color module.
337
337
338
338
Recommendation: color.adjust(#abcdef, $lightness: 10%)
339
339
@@ -351,7 +351,7 @@ More info: https://sass-lang.com/documentation/functions/color#lighten
351
351
a {b: color.darken(#abcdef, 10%)}
352
352
353
353
<===> error/darken/error
354
- Error: The function darken() isn't in the new module system .
354
+ Error: The function darken() isn't in the sass:color module.
355
355
356
356
Recommendation: color.adjust(#abcdef, $lightness: -10%)
357
357
@@ -369,7 +369,7 @@ More info: https://sass-lang.com/documentation/functions/color#darken
369
369
a {b: color.saturate(#abcdef, 10%)}
370
370
371
371
<===> error/saturate/error
372
- Error: The function saturate() isn't in the new module system .
372
+ Error: The function saturate() isn't in the sass:color module.
373
373
374
374
Recommendation: color.adjust(#abcdef, $saturation: 10%)
375
375
@@ -387,7 +387,7 @@ More info: https://sass-lang.com/documentation/functions/color#saturate
387
387
a {b: color.desaturate(#abcdef, 10%)}
388
388
389
389
<===> error/desaturate/error
390
- Error: The function desaturate() isn't in the new module system .
390
+ Error: The function desaturate() isn't in the sass:color module.
391
391
392
392
Recommendation: color.adjust(#abcdef, $saturation: -10%)
393
393
@@ -405,7 +405,7 @@ More info: https://sass-lang.com/documentation/functions/color#desaturate
405
405
a {b: color.opacify(#abcdef, 0.5)}
406
406
407
407
<===> error/opacify/error
408
- Error: The function opacify() isn't in the new module system .
408
+ Error: The function opacify() isn't in the sass:color module.
409
409
410
410
Recommendation: color.adjust(#abcdef, $alpha: 0.5)
411
411
@@ -423,7 +423,7 @@ More info: https://sass-lang.com/documentation/functions/color#opacify
423
423
a {b: color.fade-in(#abcdef, 0.5)}
424
424
425
425
<===> error/fade_in/error
426
- Error: The function fade-in() isn't in the new module system .
426
+ Error: The function fade-in() isn't in the sass:color module.
427
427
428
428
Recommendation: color.adjust(#abcdef, $alpha: 0.5)
429
429
@@ -441,7 +441,7 @@ More info: https://sass-lang.com/documentation/functions/color#fade-in
441
441
a {b: color.transparentize(#abcdef, 0.5)}
442
442
443
443
<===> error/transparentize/error
444
- Error: The function transparentize() isn't in the new module system .
444
+ Error: The function transparentize() isn't in the sass:color module.
445
445
446
446
Recommendation: color.adjust(#abcdef, $alpha: -0.5)
447
447
@@ -459,7 +459,7 @@ More info: https://sass-lang.com/documentation/functions/color#transparentize
459
459
a {b: color.fade-out(#abcdef, 0.5)}
460
460
461
461
<===> error/fade_out/error
462
- Error: The function fade-out() isn't in the new module system .
462
+ Error: The function fade-out() isn't in the sass:color module.
463
463
464
464
Recommendation: color.adjust(#abcdef, $alpha: -0.5)
465
465
0 commit comments