I’ve edited your post for readability. When you enter a code block into the forum, remember to precede it with a line of three backticks and follow it with a line of three backticks to make easier to read. See this post to find the backtick on your keyboard.
What you are trying to do in this challenge is adjust the color property of each class defined in the … section. Currently, each of them is set to #000000 which is black. They give you the RGB for each color, so all you have to do is replace each #000000 with the corresponding rgb statement. For example for the orchid-text class, you would change:
.orchid-text {
color: #000000;
}
to
.orchid-text {
color: rgb(218, 112, 214);
}
NOTE: You changed the original class name specified in the first h1 tag from:
<h1 class="red-text">I am (0, 0, 255)!</h1>
to
<h1 class="(0, 0, 255-text">I am (0, 0, 255)!</h1>
so you will need to change it back to the original in order to pass the tests.
…It’s still saying I don’t have the blue output blue in color, and it is displayed as such. It also says I don’t have rgb included in my declaration, and it is so.
Well, I’ve tried it with orange because when I clicked on ‘hint’ it just gives the orange code. However, that still did not work out for me… Lol!
@Paradox17 - I’ve edited your post for readability. When you enter a code block into the forum, remember to precede it with a line of three backticks and follow it with a line of three backticks to make easier to read. See this post to find the backtick on your keyboard. The “preformatted text” tool in the editor (</>) will also add backticks around text.