---
id: 5f45b4c81cea7763550e40df
title: Step 84
challengeType: 0
dashedName: step-84
---
# --description--
To keep with the same color theme you have already been using (black and brown), change the color for when the link is visited to `black` and use `brown` for when the link is actually clicked.
# --hints--
You should set the `color` property to `black` when the link is `visited`.
```js
const aVisitedColor = new __helpers.CSSHelp(document).getStyle('a:visited')?.getPropertyValue('color');
assert(aVisitedColor === 'black');
```
You should set the `color` property to `brown` when the link is `active`.
```js
const aActiveColor = new __helpers.CSSHelp(document).getStyle('a:active')?.getPropertyValue('color');
assert(aActiveColor === 'brown');
```
# --seed--
## --seed-contents--
```html