Having trouble with Abbreviated Hex Codes

Did anyone ever get this working?

I don’t see anything I’ve done wrong but it’s failing on using the shortened hex

Your code so far

<style>
  .red-text {
    color: #F00;
  }
  .fuchsia-text {
    color: #F0F
  }
  .cyan-text {
    color: #0FF
  }
  .green-text {
    color: #0F0
  }
</style>

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

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

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

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

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36.

Link to the challenge:

What do you mean by “it’s failing”. This is what I see when I run your code:

image

The colours look fine to me.