Learn CSS Colors by Building a Set of Colored Markers - Step 62

help guys i need help whats wrong with the hex code with the class selector .green? i cant seem to get past the step cos it doesnt work help

/* file: styles.css */
h1 {
  text-align: center;
}

.container {
  background-color: rgb(255, 255, 255);
  padding: 10px 0;
}

.marker {
  width: 200px;
  height: 25px;
  margin: 10px auto;
}

.red {
  background: linear-gradient(180deg, rgb(122, 74, 14) 0%, rgb(245, 62, 113) 50%, rgb(162, 27, 27) 100%);
}


/* User Editable Region */

.green {
  background:linear-gradient(180deg, #55680D ,#71F53E);
}

/* User Editable Region */


.blue {
  background-color: hsl(240, 100%, 50%);
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 OPR/101.0.0.0

Challenge: Learn CSS Colors by Building a Set of Colored Markers - Step 62

Link to the challenge:

Welcome to our community!

The instruction: " For the second color argument, use a hex color code with the values 71 for red, F5 for green, and 3E for blue."

You should have only one color argument written in a hex color code. In other words, the hex color code consists of all three given values for each color component (red, green, blue). For example, the hex code could be #A1B1C2.

ohhh so I’m supposed to replace the current hex color code with the one described in the text? anyways i got past this step somehow i don’t remember but thanks for replying :smile:

1 Like

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