Use Hex Code to Mix Colors what is the matter

Tell us what’s happening:
what am i not doing here

Your code so far


<style>
  .red-text {
    color: FF0000;
  }
  .green-text {
    color: 00FF00;
  }
  .dodger-blue-text {
    color: #1E90FF;
  }
  .orange-text {
    color: FFA500;
  }
</style>

<h1 class="red-text">I am red!</h1>

<h1 class="green-text">I am green!</h1>

<h1 class="dodger-blue-text">I am dodger blue!</h1>

<h1 class="orange-text">I am orange!</h1>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 Avast/71.0.1037.99.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-css/use-hex-code-to-mix-colors

Hint: There is something that you did (correctly) for dodger-blue-text that you didn’t do for any of the other classes.

Typos.

First rule of thumb on these challenges - if you understand the question and you think you’ve got the right answer and it’s not passing, it’s probably a typo.

I’ve checked it out but i just don’t know what it is

  .green-text {
    color: 00FF00;
  }
  .dodger-blue-text {
    color: #1E90FF;
  }

One of these has something that the other is missing. You may want to re-read the instructions carefullly.

Oh, i’ve seen it, i didn’t put “#” before the others. Thanks for your help. You saved me

1 Like

I love the way you’re helping!

1 Like

I’m glad I could help. Happy coding!

1 Like