Skip to main content

--description--

The hsl() option in CSS also makes it easy to adjust the tone of a color. Mixing white with a pure hue creates a tint of that color, and adding black will make a shade. Alternatively, a tone is produced by adding gray or by both tinting and shading. Recall that the 's' and 'l' of hsl() stand for saturation and lightness, respectively. The saturation percent changes the amount of gray and the lightness percent determines how much white or black is in the color. This is useful when you have a base hue you like, but need different variations of it.

--instructions--

All elements have a default background-color of transparent. Our nav element currently appears to have a cyan background, because the element behind it has a background-color set to cyan. Add a background-color to the nav element so it uses the same cyan hue, but has 80% saturation and 25% lightness values to change its tone and shade.

--hints--

The nav element should have a background-color of the adjusted cyan tone using the hsl() property.

// Computed style of hsl(180, 80%, 25%) results in rgb(13,115,115)
assert.equal(
new __helpers.CSSHelp(document).getStyle('nav').getPropVal('background-color', true),
'rgb(13,115,115)'
)

--seed--

--seed-contents--

<style>
header {
background-color: hsl(180, 90%, 35%);
color: #FFFFFF;
}

nav {

}

h1 {
text-indent: 10px;
padding-top: 10px;
}

nav ul {
margin: 0px;
padding: 5px 0px 5px 30px;
}

nav li {
display: inline;
margin-right: 20px;
}

a {
text-decoration: none;
color: inherit;
}
</style>

<header>
<h1>Cooking with FCC!</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Classes</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>

--solutions--

<style>
header {
background-color: hsl(180, 90%, 35%);
color: #FFFFFF;
}

nav {
background-color: hsl(180, 80%, 25%);
}

h1 {
text-indent: 10px;
padding-top: 10px;
}

nav ul {
margin: 0px;
padding: 5px 0px 5px 30px;
}

nav li {
display: inline;
margin-right: 20px;
}

a {
text-decoration: none;
color: inherit;
}
</style>
<header>
<h1>Cooking with FCC!</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Classes</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>