---
id: 5d822fd413a79914d39e98fc
title: Step 52
challengeType: 0
dashedName: step-52
---
# --description--
You can see the hard color change at the top of the section. Change the gradient type from `linear-gradient` to `repeating-linear-gradient` for this section. This will make the four colors of your gradient repeat until it gets to the bottom of the element; giving you some stripes, and saving you from having to add a bunch of elements to create them.
# --hints--
You should change the `background` property of `.bb2b` from using `linear-gradient` to using `repeating-linear-gradient`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle(`.bb2b`)?.getPropVal('background', true), "repeating-linear-gradient(var(--building-color2),var(--building-color2)6%,var(--window-color2)6%,var(--window-color2)9%)");
```
# --seed--
## --seed-contents--
```html