--- id: 5d822fd413a79914d39e98de title: Step 22 challengeType: 0 dashedName: step-22 --- # --description-- Create a new variable below the other one called `--building-color2` and give it a value of `#66cc99`. Then set it as the `background-color` of `.bb2`. # --hints-- You should define a new property variable called `--building-color2`. ```js assert.exists(new __helpers.CSSHelp(document).isPropertyUsed('--building-color2')); ``` You should give `--building-color2` a value of `#66cc99`. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('.bb1')?.getPropertyValue('--building-color2').trim(), '#66cc99'); ``` You should set the `background-color` of `.bb2`. ```js assert.exists(new __helpers.CSSHelp(document).getStyle('.bb2')?.backgroundColor); ``` You should set the `background-color` using the `--building-color2` variable. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('.bb2')?.backgroundColor.trim(), 'var(--building-color2)'); ``` # --seed-- ## --seed-contents-- ```html