---
id: 5d822fd413a79914d39e98fa
title: Step 50
challengeType: 0
dashedName: step-50
---
# --description--
Create a new variable in `:root` named `window-color2` with a value of `#8cd9b3`. This will be used as the secondary color for this building.
# --hints--
You should create a new property variable called `window-color2` within `:root`.
```js
assert.exists(new __helpers.CSSHelp(document).getStyle(':root')?.getPropertyValue('--window-color2'));
```
You should give `window-color2` a value of `#8cd9b3`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle(':root')?.getPropertyValue('--window-color2').trim(), '#8cd9b3');
```
# --seed--
## --seed-contents--
```html