I Need Help with

Tell us what’s happening:
i have done the same thing for all 4 h1 elements and it worked for two and not the other two when the directions and the code are exactly the same.

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:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299.

Link to the challenge:
https://www.freecodecamp.org/challenges/use-rgb-to-mix-colors

It’s simply because you haven’t done what the instruction is asking you to! :slight_smile:

Replace the color words in our style element with their correct RGB values.

i did replace the color words in the style element with rgb do i need to replace them in the h1 elements as well?

nvm i just tried that and that was worse lol

Have a look at the RGB values that you are using and compare to those on the list. :wink:

omg…:upside_down_face: thank you

All good! :smile: Good luck with the rest of it and have a nice weekend! :smile:

Thanks I’ll try haha