---
id: 619d20b12996101f430920fb
title: Step 82
challengeType: 0
dashedName: step-82
---
# --description--
The penguin's beak and feet share the same `color`.
Create a new custom CSS variable named `--penguin-picorna`, and replace all relavant property values with it.
# --hints--
You should give `:root` a `--penguin-picorna` property.
```js
assert.exists(new __helpers.CSSHelp(document).getStyle(':root').getPropertyValue('--penguin-picorna'));
```
You should give `--penguin-picorna` a value of `orange`, but found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle(':root').getPropVal('--penguin-picorna', true), 'orange');
```
You should give `.beak` a `background-color` of `var(--penguin-picorna)`, but found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.beak')?.getPropVal('background-color', true), 'var(--penguin-picorna)');
```
You should give `.foot` a `background-color` of `var(--penguin-picorna)`, but found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.foot')?.getPropVal('background-color', true), 'var(--penguin-picorna)');
```
# --seed--
## --seed-contents--
```html