Use Hex Code to Mix Colors Errors

In the challenge “Use Hex Code to Mix Colors”, I keep getting the error -" Your h1 element with the text I am red! should be given the color red" for all four colours. Can someone help me with this?

My 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; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36.

Challenge: Use Hex Code to Mix Colors

Link to the challenge:

do you have a dark mode extension? extensions can interfere with tests

also make sure your browser is updated to last version

Yup was the dark mode extension. Thanks for the help!