diff --git a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/adjust-the-hue-of-a-color.md b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/adjust-the-hue-of-a-color.md index f03b86883e..2d7852df61 100644 --- a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/adjust-the-hue-of-a-color.md +++ b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/adjust-the-hue-of-a-color.md @@ -27,19 +27,19 @@ Change the `background-color` of each `div` element based on the class names (`g # --hints-- -Your code should use the `hsl()` function to declare the color `green`. +Your code should use the `hsl()` function to declare the color green. ```js assert(code.match(/\.green\s*?{\s*?background-color\s*:\s*?hsl/gi)); ``` -Your code should use the `hsl()` function to declare the color `cyan`. +Your code should use the `hsl()` function to declare the color cyan. ```js assert(code.match(/\.cyan\s*?{\s*?background-color\s*:\s*?hsl/gi)); ``` -Your code should use the `hsl()` function to declare the color `blue`. +Your code should use the `hsl()` function to declare the color blue. ```js assert(code.match(/\.blue\s*?{\s*?background-color\s*:\s*?hsl/gi));