mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
* 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>
20 lines
353 B
TypeScript
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;
|