What is wrong now its the second time this has happened to me i follow everything correctly and than it says a mistake :/

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**
<head>
<style>
body {
  color: hsl(0, 55%, 15%);
  background-color: hsl(120, 15%, 55%);
}
</style>
</head>
<body>
<header>
  <h1>Deep Thoughts with Master Camper Cat</h1>
</header>
<article>
  <h2>A Word on the Recent Catnip Doping Scandal</h2>
  <p>The influence that catnip has on feline behavior is well-documented, and its use as an herbal supplement in competitive ninja circles remains controversial. Once again, the debate to ban the substance is brought to the public's attention after the high-profile win of Kittytron, a long-time proponent and user of the green stuff, at the Claw of Fury tournament.</p>
  <p>As I've stated in the past, I firmly believe a true ninja's skills must come from within, with no external influences. My own catnip use shall continue as purely recreational.</p>
</article>
</body>
  **Your browser information:**

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

Challenge: Avoid Colorblindness Issues by Using Sufficient Contrast

Link to the challenge:

The challenge is asking to change only the lightness property.
Originally that value was

background-color: hsl(120, 25%, 35%);

As you can see you changed also the saturation from 25% to 15%.

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