--- id: 62a24068d60b671847d1d4e2 title: Passo 8 challengeType: 0 dashedName: step-8 --- # --description-- Agora, precisamos de um estilo rápido. Comece dando ao `body` um `background-color` definido como `darkblue`. # --hints-- Você deve ter um seletor `body`. ```js const body = new __helpers.CSSHelp(document).getStyle('body'); assert.exists(body); ``` O seletor `body` deve ter a propriedade `background-color` definida como `darkblue`. ```js const background = new __helpers.CSSHelp(document).getStyle('body')?.getPropertyValue('background-color'); assert.equal(background, 'darkblue'); ``` # --seed-- ## --seed-contents-- ```html RPG - Dragon Repeller
XP: 0 Health: 100 Gold: 50
Monster Name: Health:
Welcome to Dragon Repeller. You must defeat the dragon that is preventing people from leaving the town. You are in the town square. Where do you want to go? Use the buttons above.
``` ```css --fcc-editable-region-- --fcc-editable-region-- ```