chore(learn): Remove colors shown as keywords (#45564)

This commit is contained in:
Jordan Moore
2022-03-29 04:25:58 -05:00
committed by GitHub
parent 43496432d6
commit 40d7dc4af9

View File

@ -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));