16 lines
327 B
JavaScript
16 lines
327 B
JavaScript
// Generated using https://zenoo.github.io/mui-theme-creator/
|
|
import { createTheme } from "@mui/material/styles";
|
|
|
|
const themeOptions = {
|
|
palette: {
|
|
mode: "light",
|
|
primary: {
|
|
main: "rgba(109,216,144,255)",
|
|
},
|
|
secondary: {
|
|
main: "#f50057",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default createTheme(themeOptions);
|