diff --git a/index.html b/index.html index 173f60d..d1aea28 100644 --- a/index.html +++ b/index.html @@ -10,8 +10,8 @@ - -

+

futile

@@ -29,7 +29,14 @@ }); } - onKonamiCode(() => { alert('ough') }) + onKonamiCode(() => { + let body = document.getElementById("body"); + body.classList.toggle("bg-black"); + body.classList.toggle("bg-white"); + let header = document.getElementById("header"); + header.classList.toggle("text-white"); + header.classList.toggle("text-black"); + }) diff --git a/style.css b/style.css index b3a484b..bb56a18 100644 --- a/style.css +++ b/style.css @@ -1,5 +1,8 @@ @import "tailwindcss"; +@source inline("bg-white"); +@source inline("text-black"); + @font-face { font-family: "Bokor"; src: url("static/fonts/Bokor-Regular.woff2") format("woff2");