Is this lesson not working?

Tell us what’s happening:
The lesson keeps saying I need to fix blue… BUT THATS THE RGB FOR BLUE???

  **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 {
  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">I am blue!</h1>
  **Your browser information:**

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14150.87.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.124 Safari/537.36

Challenge: Use RGB to Mix Colors

Link to the challenge:

You changed the name of this class, which is confusing the test suite.

And this is not quite the correct blue

rgb(0, 0, 255)

Ohhhh. Ok thank you!

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