diff --git a/seed/challenges/01-front-end-development-certification/html5-and-css.json b/seed/challenges/01-front-end-development-certification/html5-and-css.json
index 3bb1e0f89d..bc43f0741a 100644
--- a/seed/challenges/01-front-end-development-certification/html5-and-css.json
+++ b/seed/challenges/01-front-end-development-certification/html5-and-css.json
@@ -3296,8 +3296,8 @@
"title": "Use Hex Code for Specific Colors",
"description": [
"Did you know there are other ways to represent colors in CSS? One of these ways is called hexadecimal code, or hex code
for short.",
- "The word Hexadecimal
can be broken down into the words hexa
and decimal
. You may be familiar with decimal
being a number like 0.10 or 0.333. In CSS, decimal
can be thought of as the numbers zero through nine, giving a total of ten numbers. The word hexa
, as you might guess, means six. In CSS, this refers to the letters A, B, C, D, E, and F. Putting these together, each place value of a hexadecimal
can be a number 0 to 9 or A through F, giving us a total of 16 possible values. You can find more information about hexadecimal numbers here.",
- "With CSS, we use 6 hexadecimal numbers to represent colors. For example, #000000
is the lowest possible value, and it represents the color black.",
+ "We usually use decimals
, or base 10 numbers, which use the symbols 0 to 9 for each digit. Hexadecimals
(or hex
) are base 16 numbers. This means it uses sixteen distinct symbols. Like decimals, the symbols 0-9 represents values zero to nine. Then A,B,C,D,E,F represent values ten to fifteen. Altogether, 0 to F can represent a digit in hexadecimal
, giving us 16 total possible values. You can find more information about hexadecimal numbers here.",
+ "In CSS, we can use 6 hexadecimal digits to represent colors, two each for the red (R), green (G), and blue (B) components. For example, #000000
is black and is also the lowest possible value. You can find more information about the RGB color system here.",
"Replace the word black
in our body
element's background-color with its hex code
representation, #000000
."
],
"challengeSeed": [