Learn CSS Variables by Building a City Skyline - Step 78

Tell us what’s happening:

It keeps telling me, “ You should add a repeating-linear-gradient with a first color of --building-color4 from 0% to 10%.” and I don’t know what to do please help.

Your code so far

<!-- file: index.html -->

/* file: styles.css */
/* User Editable Region */

.fb1c {
  width: 100%;
  height: 80%;
  background: repeating-linear-gradient(
      90deg,
      var(--building-color4),
      var(--building-color4) 10%,
      transparent 10%,
      transparent 15%
    ),

    repeating-linear-gradient(
      90deg,
      var(--building-color4),
      var(--building-color4) 10%,
      var(--window-color4) 10%,
      var(--window-color4) 90%
    )
}

/* User Editable Region */

Your browser information:

User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1

Challenge Information:

Learn CSS Variables by Building a City Skyline - Step 78

they don’t like the 90deg you added to the second gradient (it was not requested)