---
id: 5d822fd413a79914d39e98f6
title: Step 46
challengeType: 0
dashedName: step-46
---
# --description--
You can specify where you want a gradient transition to complete by adding it to the color like this:
```css
gradient-type(
color1,
color2 20%,
color3
);
```
Here, it will transition from `color1` to `color2` between `0%` and `20%` of the element and then transition to `color3` for the rest. Add `80%` to the `--building-color1` color of the `.bb1d` gradient so you can see it in action.
# --hints--
You should add a value of `80%` to the `--building-color1` color in the `linear-gradient` of `.bb1d`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.bb1d')?.getPropVal('background', true), 'linear-gradient(orange,var(--building-color1)80%,var(--window-color1))');
```
# --seed--
## --seed-contents--
```html