2023-12-20 03:20:04 +00:00
|
|
|
// Generated using https://zenoo.github.io/mui-theme-creator/
|
|
|
|
import { createTheme } from "@mui/material/styles";
|
2023-12-26 12:26:16 -07:00
|
|
|
import { unstable_ClassNameGenerator as ClassNameGenerator } from "@mui/material/className";
|
|
|
|
// This fixes style clashing with Chonky which has not been updated to Material 5
|
|
|
|
// see https://github.com/TimboKZ/Chonky/issues/101#issuecomment-1362949314
|
|
|
|
ClassNameGenerator.configure((componentName) => `mcl-${componentName}`);
|
2023-12-20 03:20:04 +00:00
|
|
|
|
|
|
|
const themeOptions = {
|
|
|
|
palette: {
|
|
|
|
mode: "light",
|
|
|
|
primary: {
|
2023-12-22 18:30:48 +00:00
|
|
|
main: "#29985c",
|
2023-12-20 03:20:04 +00:00
|
|
|
},
|
|
|
|
secondary: {
|
|
|
|
main: "#f50057",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default createTheme(themeOptions);
|