1
0
mirror of https://github.com/0rangebananaspy/authelia.git synced 2024-09-14 22:47:21 +07:00
authelia/web/src/themes/Light.ts
renovate[bot] e4a769f69c
build(deps): update dependency @material-ui/core to v4.12.0 ()
* build(deps): update dependency @material-ui/core to v4.12.0

* fix(web): adjust deprecations

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Amir Zarrinkafsh <nightah@me.com>
2021-07-07 09:10:31 +10:00

20 lines
353 B
TypeScript

import { createTheme } from "@material-ui/core/styles";
const Light = createTheme({
custom: {
icon: "#000",
loadingBar: "#000",
},
palette: {
primary: {
main: "#1976d2",
},
background: {
default: "#fff",
paper: "#fff",
},
},
});
export default Light;