From 40d7dc4af96658582b0a9710e71922239a75a201 Mon Sep 17 00:00:00 2001 From: Jordan Moore Date: Tue, 29 Mar 2022 04:25:58 -0500 Subject: [PATCH] chore(learn): Remove colors shown as keywords (#45564) --- .../applied-visual-design/adjust-the-hue-of-a-color.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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));