[FEATURE] Autocomplete & theming

This commit is contained in:
dunemask 2023-10-09 13:42:11 -06:00
parent ef00eef464
commit 5a9212a814
18 changed files with 114 additions and 35 deletions

16
src/util/theme.js Normal file
View file

@ -0,0 +1,16 @@
// 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);