Mix Colors help me please

Tell us what’s happening:

Give your h1 element with the text I am sienna! the color sienna. which is rgb(160, 82, 45) but i kept getting this (up)

Your code so far


<style>
  .red-text {
    color: rgb(255, 0, 0);
  }
  .orchid-text {
    color: rgb(218, 112, 214);
  };
  .sienna-text {
    color: rgb(160, 82, 45);
  }
  .blue-text {
    color: rgb(0, 0, 255);
  }
</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>

Remove the ; after the }.

I bet the issue is that the text was changed
The test look specifically for I am sienna!, with a capital first letter

i have , but still is marking it wrong

I saw your other post. The semicolon after the } in orchid-text is still there.

Tell us what’s happening:

I have entered all the code but the computer kept marking me wrong on sienna colour code. rgb(165, 82, 45); but still, for the past 2 days now, help
Your code so far


<style>
  .red-text {
    color: rgb(255, 0, 0);
  }
  .orchid-text {
    color: rgb(218, 112, 214);
  };
  .sienna-text {
    color: rgb(160, 82, 45);
  }
  .blue-text {
    color: rgb(0, 0, 255);
  }
</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

There is an extra semicolon.

After the orchid-text class closing curly brace there’s a semi-colon that shouldn’t be there. Remove it and the tests should pass.

  .orchid-text {
    color: rgb(218, 112, 214);
  };
  .sienna-text {

Specifically, remove that semicolon after the .orchid-text block.
(whoops, ninja’d)

i have removed it thanks but still i get this now " // running tests

Use rgb for the color sienna.

// tests completed"

Show us your most recent code, please?

Please, one thread for one challenge
It is also easier for you because you have already been answered for the current issue you are facing

thanks is ok now. thank you very much.