diff --git a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/adjust-the-tone-of-a-color.english.md b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/adjust-the-tone-of-a-color.english.md
index afbef05dd9..0cd6c0a3a8 100644
--- a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/adjust-the-tone-of-a-color.english.md
+++ b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/adjust-the-tone-of-a-color.english.md
@@ -12,7 +12,7 @@ The hsl()
option in CSS also makes it easy to adjust the tone of a
## Instructions
-The navigation bar on this site currently inherits its background-color
from the header
element. Starting with that color as a base, 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.
+All elements have a default background-color
of transparent
. Our nav
element currently appears 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.
## Tests