--- id: 5d822fd413a79914d39e98e2 title: Part 26 challengeType: 0 dashedName: part-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-- test-text ```js const bb2style = code.match(/\.bb2\s*{[\s\S]+?[^}]}/g)[0]; const bb3style = code.match(/\.bb3\s*{[\s\S]+?[^}]}/g)[0]; assert( /background-color\s*:\s*var\(\s*--building-color2\s*\)\s*(;|\s*})/g.test( bb2style ) && /background-color\s*:\s*var\(\s*--building-color3\s*\)\s*(;|\s*})/g.test( bb3style ) ); ``` # --seed-- ## --seed-contents-- ```html freeCodeCamp Skyline Project
``` # --solutions-- ```html freeCodeCamp Skyline Project
```