Reorganize File Structure

This commit is contained in:
jveebs 2023-03-28 17:23:39 -04:00
parent 9e1bf59f43
commit 8d28512fbf
7 changed files with 30 additions and 27 deletions

33
src/assets/theme.js Normal file
View file

@ -0,0 +1,33 @@
import { createTheme } from "@material-ui/core"
export const theme = createTheme({
pallete: {
light: {
primary: {
},
secondary: {
},
background: {
}
},
dark: {
primary: {
},
secondary: {
},
background: {
}
}
},
typography: {
},
overrides: {
}
})