Learn about Tertiary Colors error on two colors only

Tell us what’s happening:

I noticed the hex names for orange and raspberry are different than online hex codes for these colors… I’m not sure how FCC is determining them.

Your code so far

  body {
    background-color: #FFFFFF;
  }
  
  .orange {
    background-color: #FFA500;
  }
  
  .cyan {
    background-color: cyan;
  }
  
  .raspberry {
    background-color: #FF007D;
  }
  
  div {
    height: 100px;
    width: 100px;
    margin-bottom: 5px;
  }
</style>
  
<div class="orange"></div>
<div class="cyan"></div>
<div class="raspberry"></div>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/learn-about-tertiary-colors

Hey,
There are different shades to a color.
So, you might have seen codes for different shade of color online you are mentioning.

So, do not worry.

Again, the color names of the hex codes in FCC are different than they are in online searches… I don’t know where FCC is getting their names for these hex codes, but some of them don’t appear to be accurate with online searches.

So the task is to change a hex colour syntax to RGB colour syntax task has a class, each colour has a class that is just what that colour is. #00FFFF is a cyan colour. #FFA500 is an orange colour. They’re not using HTML colour names anywhere, you’ve added them.