I'm not seeing it

I’ve changed the colors into hex and the dodger blue is still black. Plus, I can’t pass the other checks

  **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 (Linux; Android 8.1.0; A501DL Build/OPM1.171019.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/99.0.4844.58 Mobile Safari/537.36

Challenge: Use Hex Code to Mix Colors

Link to the challenge:

Hello @Dman42076

The Hex color codes are missing # at the start.

It should be like this: #FFFFFF . Add # at the start of all the color codes.

Crap. They all changed color, except for the blue. Weird. Thanks

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.