---
id: 5d822fd413a79914d39e98e2
title: Step 26
challengeType: 0
dashedName: step-26
---
# --description--
Now that you've worked the bugs out and the buildings are the right colors, you can remove the fallback values in the two places they were used. Go ahead and do that now.
# --hints--
You should remove the fallback in the `background-color` from `.bb2`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.bb2')?.backgroundColor, 'var(--building-color2)');
```
You should remove the fallback in the `background-color` from `.bb3`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.bb3')?.backgroundColor.trim(), 'var(--building-color3)');
```
# --seed--
## --seed-contents--
```html