From f14c71a693fa0d9f46011e6f90afcb5009ba8f20 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 13:06:58 +0000 Subject: [PATCH] Changed the background color of the entire page to match the background color of the 2-player Pong game (#2e026d). --- src/main.jsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/main.jsx b/src/main.jsx index 9e7831f..6506dff 100644 --- a/src/main.jsx +++ b/src/main.jsx @@ -11,7 +11,16 @@ const colors = { }, }; -const theme = extendTheme({ colors }); +const theme = extendTheme({ + colors, + styles: { + global: { + body: { + bg: "#2e026d", + }, + }, + }, +}); ReactDOM.createRoot(document.getElementById("root")).render(