---
id: 5d822fd413a79914d39e9903
title: Part 59
challengeType: 0
dashedName: part-59
---
# --description--
On to the next building! Create a new variable called `--window-color3` in `:root` and give it a value of `#d98cb3`. This will be the secondary color for the pink buildings.
# --hints--
You should define a new property variable `--window-color3`.
```js
assert(new __helpers.CSSHelp(document).isPropertyUsed("--window-color3"));
```
You should give `--window-color3` a value of `#d98cb3`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle(":root")?.getPropertyValue("--window-color3")?.trim(), "#d98cb3");
```
# --seed--
## --seed-contents--
```html
    
  
    freeCodeCamp Skyline Project