---
id: 60ba89123a445e0f5c9e4022
title: Step 74
challengeType: 0
dashedName: step-74
---
# --description--
Give your `triangle` elements the correct color. Set the `border-top-color`, `border-bottom-color`, and `border-left-color` to `transparent`. Set the `border-right-color` to `Gold`.
# --hints--
Your `.triangle` selector should have a `border-top-color` property set to `transparent`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.triangle')?.borderTopColor === 'transparent');
```
Your `.triangle` selector should have a `border-bottom-color` property set to `transparent`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.triangle')?.borderBottomColor === 'transparent');
```
Your `.triangle` selector should have a `border-left-color` property set to `transparent`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.triangle')?.borderLeftColor === 'transparent');
```
Your `.triangle` selector should have a `border-right-color` property set to `Gold`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.triangle')?.borderRightColor === 'gold');
```
# --seed--
## --seed-contents--
```html