Let's add CSS to give this website style. When you're finished, we'll link the JavaScript to put the buttons into action.

<html>
<body>
<div class="theme" id="theme" style="background-color: ghostwhite">
<p id="current" class="current">Light Mode</p>
<img id="themeImg" src="https://mimo.app/i/light-icon.png">
</div>
<div class="options">
<button id="dark" class="darkBtn" onclick="updateColor(this.id)">dark</button>
<button id="light" class="lightBtn" onclick="updateColor(this.id)">light</button>
<button id="ninja" class="ninjaBtn" onclick="updateColor(this.id)">ninja</button>
</div>
</body>
</html>]]>