Its telling me the red and blue are wrong.. please help

Tell us what’s happening:

  **Your code so far**

<style>
.red-text {
  color: rgb(225, 0,0);
}
.orchid-text {
  color: rgb(218, 112, 214);
}
.sienna-text {
  color: rgb(160, 82, 45);
}
.blue-text {
  color: rgb(0, 0, 225);
}
</style>

<h1 class="red-text">I am red!</h1>

<h1 class="orchid-text">I am orchid!</h1>

<h1 class="sienna-text">I am sienna!</h1>

<h1 class="blue-text">I am blue!</h1>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36.

Challenge: Use RGB to Mix Colors

Link to the challenge:

this is what its telling me exactly. also sorry im new here . so forgive me if im using this website wrong.
Your h1 element with the text I am red! should have the color red.

You should use rgb for the color red.

it says the same for the blue as well.

Revisit the lesson again and carefully look at the numbers.
Read each individual number aloud for what the lesson tells you and for what you have typed in.

Hint:

225 != 255

omg thank you! im so stupid lol I’ve redone it multiple times and i wrote it wrong each time wth how… lol wow i feel dumb
but seriously thank you lol

1 Like

No worries. Typo’s are the bane of developers.

1 Like

Haha yes true… but also I’ve been doing this for about 5 hours now, so I think that means I should take a break lol

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.