Tests errors in assigment

Tell us what’s happening:

I have written all background colors in HEX values as in solution to this lesson and its still doesnt accept it and gives me errors in tests. I cannot finish assignment because of that, please advise.

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

Challenge: Learn about Tertiary Colors

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

Make sure your HEX codes are matching the ones given in the challenge :wink:

I did! They are EXACTLY as in solution

They do not match:

Challenge

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

well, when I pressed Get Help and went to Solution page, here is the solution it gives me:

Ya. That is not correct. Change your Ds to Fs and it will work (tested in Chrome)…

Always use the Challenge info! The ‘solutions’ on the forum are not updated when the challenges are changed for browser issues/etc.

Thanks, i did and worked.