From f4bbef4baa69e21540e859ca7d0a3890d0a58332 Mon Sep 17 00:00:00 2001 From: Logan Date: Sat, 20 Jul 2024 03:05:25 -0500 Subject: [PATCH] Changed background color --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 79088f5..285649a 100644 --- a/src/index.js +++ b/src/index.js @@ -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); }