Change Background Color (Hex Code)

This is the task: “Change the background-color property of the orange , cyan , and raspberry classes to their respective colors. Make sure to use the hex codes and not the color names.”

Don’t know what’s wrong, thank you.

Your code so far


<style>
body {
  background-color: #FFFFFF;
}

.orange {
background-color: #FF7D00;
}

.cyan {
background-color: #00FFFF;
}

.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 (Macintosh; Intel Mac OS X 10.12; rv:73.0) Gecko/20100101 Firefox/73.0.

Challenge: Learn about Tertiary Colors

Link to the challenge:

Looks like you may have played with the colors a little. Those are not the hex codes they gave you for orange and raspberry.

Thank you, I tried so many different hex codes that I got lost. Thank you!