Que al ejecutar el código me da como error y revise varias veces y no puede solucionar para mi esta bien pero no se porque toma como no valido

Cuéntanos qué está pasando:
Describe tu problema en detalle aquí.

  **Tu código hasta el momento**

<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>
  **Información de tu navegador:**

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36

Desafío: Aprende sobre colores terciarios

Enlaza al desafío:
https://www.freecodecamp.org/espanol/learn/responsive-web-design/applied-visual-design/learn-about-tertiary-colors

The problem description gives these color values:

  anaranjado/orange - #FF7F00
          cian/cyan - #00FFFF
frambuesa/raspberry - #FF007F

Your code has:

.orange {
  background-color: #FF7D00;
}
.cyan {
  background-color: #00FFFF;
}
.raspberry {
  background-color: #FF007D;
}

The color values you are using for two of those do not match what is given in the problem description.

When I switch them to the values given in the description, your code passes for me.

Thanks for your help, problem solved with the changes you suggested to me

1 Like