Learn CSS colors by building a set of colored markers lesson 68

What does “pass” mean in lesson 68 ? I should clarify that I know what the solution is. I am just confused on what the context of “pass” is.

Step 68

As the second color argument, pass in the hsl function with the values 223 for hue, 90% for saturation, and 60% for lightness.

.blue {
background: linear-gradient(hsl(186, 76%, 16%), hsl(223, 90%, 60%));
}

When asking a question about a challenge, please include a link to the challenge. Thanks

and code, if it has something to do with code

Sorry about that. I fixed it.

here you are passing 186, 76% and 16% to the hsl function

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.