Learn about Tertiary Colors

Tell us what’s happening:

Your code so far


<style>
  body {
    background-color: #FFFFFF;
  }
  
  .orange {
    background-color: #FFA500;
  }
  
  .cyan {
    background-color: cyan;
  }
  
  .raspberry {
    background-color:  #3380ff;
  }
  
  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 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36.

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

I can’t go next to the new task, it keeps complaining about the hex code color for both orange and raspberry. pls what is the correct hex code for orange and raspberry…

The instruction of the challenge gives table below hex codes for orange and raspberry :grinning:

Color Hex Code
orange #FF7D00
cyan #00FFFF
raspberry #FF007D

double-check the sidebar (where the instructions are) and make sure you have copied the hex codes correctly.

1 Like