⎗ ✓ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17<script> function openNav() { document.getElementById("nav").style.width = "250px"; } function closeNav() { document.getElementById("nav").style.width = "0"; } function darkMode() { document.getElementById("one").style.background = "#171717"; document.getElementById("one").style.color = "#d3d3d3"; } function lightMode() { document.getElementById("one").style.background = "white"; document.getElementById("one").style.color = "black"; } </script>