A little view point - Just pointing something out

Several challenges prior it was teaching me about Hex, rgb, and rgba
then when this lesson/challenge comes up, it wont let me solve the challenge with Hex.
it only lets me solve the challenge with plain text color words.
Just pointing this out, because its kind of hypocritical of the challenge to prevent this after it taught me to do it.
lol

<style>
  a {
    color: #000;
  }
  
  a:hover {
    color: blue;
  }
  
</style>
<a href="http://freecatphotoapp.com/" target="_blank">CatPhotoApp</a>

But it WON"T allow this, …huh?

<style>
  a {
    color: #000;
  }
  
  a:hover {
    color: #00F;
  }
  
</style>
<a href="http://freecatphotoapp.com/" target="_blank">CatPhotoApp</a>