Changed background color

This commit is contained in:
Logan 2024-07-20 03:05:25 -05:00
parent 61c0d94198
commit f4bbef4baa

View file

@ -4,6 +4,6 @@ window.onload = function() {
bg = document.getElementById("bg");
ctx = bg.getContext("2d");
ctx.fillStyle = "red";
ctx.fillStyle = "black";
ctx.fillRect(0, 0, bg.width, bg.height);
}