I can't solve using hex to mix colors please I need your assistance

Tell us what’s happening:

Your code so far


<style>
.red-text {
  color: black;
}
.green-text {
  color: black;
}
.dodger-blue-text {
  color: black;
}
.orange-text {
  color: black;
}
</style>

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

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

<h1 class="#1E90FF-text">I am dodger blue!</h1>

<h1 class="#FFA500-text">I am orange!</h1>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 8.1.0; itel A16 Plus) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Mobile Safari/537.36.

Challenge: Use Hex Code to Mix Colors

Link to the challenge:

Hello.
Reset your code and add each hex code to the proper color.
Only change the black color to the proper hex code that is given in the challenge. E.g:

.blue-text {
   color: #0000FF;
}
1 Like