Use Hex Code to Mix Colors trouble

Tell us what’s happening:
It says that “Use the hex code for the color dodger blue instead of the word dodgerblue”.
Ok. I check the instructions once more. It says :“Dodger Blue #2998E4”. The same as in my code! What;s wromng??

Your code so far

<style>
  .red-text {
    color: #FF0000;
  }
  .green-text {
    color: #00FF00;
  }
  .dodger-blue-text {
    color: #2998E4
  }
  .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:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 YaBrowser/18.1.1.839 Yowser/2.5 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/use-hex-code-to-mix-colors

Semicolon at the end of the color:

.dodger-blue-text {
    color: #2998E4;  /* <---  semicolon!! */
}
1 Like