2021-07-06 23:10:31 +00:00
|
|
|
import { createTheme } from "@material-ui/core/styles";
|
2021-01-20 12:07:40 +00:00
|
|
|
|
2021-07-06 23:10:31 +00:00
|
|
|
const Light = createTheme({
|
2021-01-20 12:07:40 +00:00
|
|
|
custom: {
|
|
|
|
icon: "#000",
|
|
|
|
loadingBar: "#000",
|
|
|
|
},
|
|
|
|
palette: {
|
|
|
|
primary: {
|
|
|
|
main: "#1976d2",
|
|
|
|
},
|
|
|
|
background: {
|
|
|
|
default: "#fff",
|
|
|
|
paper: "#fff",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
export default Light;
|