French Vanilla
3.00
--- id: 5f459225127805351a6ad057 title: Step 69 challengeType: 0 dashedName: step-69 --- # --description-- Change the background color of the `hr` element to `brown` so it matches the color of the coffee beans. # --hints-- You should set the value of the `background-color` property to `brown`. ```js const hasBackgroundColor = new __helpers.CSSHelp(document).getCSSRules().some(x => x.style['background-color'] === 'brown'); ``` Your `hr` element should have a `background-color` of `brown`. ```js const hrBackgroundColor = new __helpers.CSSHelp(document).getStyle('hr')?.getPropertyValue('background-color'); assert(hrBackgroundColor === 'brown'); ``` # --seed-- ## --seed-contents-- ```html