Skip to content

Commit

Permalink
Changed the background color of the entire page to match the backgrou…
Browse files Browse the repository at this point in the history
…nd color of the 2-player Pong game (#2e026d).
  • Loading branch information
lovable-dev[bot] committed Jun 27, 2024
1 parent 3694a01 commit f14c71a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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(
<React.StrictMode>
Expand Down

0 comments on commit f14c71a

Please sign in to comment.