Fixed another bug with mui/react

This commit is contained in:
Frikky
2023-07-14 00:40:59 +02:00
parent 2fec45b47e
commit 98f0a225d4
3 changed files with 8 additions and 41 deletions
+5 -2
View File
@@ -1,14 +1,17 @@
import React from "react";
import { createTheme, adaptV4Theme } from "@mui/material/styles";
const theme = createTheme(adaptV4Theme({
//const theme = createTheme(adaptV4Theme({
const theme = createTheme({
palette: {
main: "#F86743",
primary: {
main: "#F86743",
contrastText: "#ffffff",
},
secondary: {
main: "#e8eaf6",
contrastText: "#000000",
},
text: {
secondary: "rgba(255,255,255,0.7)",
@@ -85,6 +88,6 @@ const theme = createTheme(adaptV4Theme({
},
},
},
}));
});
export default theme;