Skip to content

Commit

Permalink
Remove primary color from theme
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsukiKigoshi committed Mar 21, 2024
1 parent 56f247a commit 4626dd6
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,10 @@
import Footer from "@/components/Footer";
import Main from "@/components/Main";
import { Box, ThemeProvider, createTheme } from "@mui/material";
import { orange } from "@mui/material/colors";

export default function App() {
const theme = createTheme({
palette: {
primary: orange,
},
palette: {},
});
return (
<ThemeProvider theme={theme}>
Expand Down

0 comments on commit 4626dd6

Please sign in to comment.