Https://www.freecodecamp.org/learn/responsive-web-design/applied-visual-design/learn-about-tertiary-colors test no pass

Tell us what’s happening:
test no pass
what i do

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_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36.

Challenge: Learn about Tertiary Colors

Link to the challenge:

its seems like you used the hint to try and solve the challenge

Color Hex Code
orange #FF7F00
cyan #00FFFF
raspberry #FF007F

use that and you should pass the tests

Thanks :slight_smile: it worked! it passed all the tests