Complete the code to rotate the hue of the color by 90 degrees using adjust-hue.
$new-color: adjust-hue($base-color, [1]);The adjust-hue function takes the hue rotation as a number in degrees without the unit. So 90 is correct.
Complete the code to rotate the hue of the color by -45 degrees using adjust-hue.
$rotated-color: adjust-hue($color, [1]);Use a negative number without units to rotate the hue backward by 45 degrees.
Fix the error in the code to correctly rotate the hue by 180 degrees.
$final-color: adjust-hue($input-color, [1]);The adjust-hue function requires a number without units. So 180 is correct.
Fill both blanks to create a map of colors with hue rotated by 30 and 60 degrees.
$colors: ("light": adjust-hue($base, [1]), "dark": adjust-hue($base, [2]));
Use numbers without units for both hue rotations: 30 and 60.
Fill all three blanks to create a map with hue rotated by 15, -15, and 45 degrees.
$palette: ("warm": adjust-hue($color, [1]), "cool": adjust-hue($color, [2]), "neutral": adjust-hue($color, [3]));
Use numbers without units for all hue rotations: 15, -15, and 45.