mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
e4a769f69c
* 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>
17 lines
284 B
TypeScript
17 lines
284 B
TypeScript
import { createTheme } from "@material-ui/core/styles";
|
|
|
|
const Dark = createTheme({
|
|
custom: {
|
|
icon: "#fff",
|
|
loadingBar: "#fff",
|
|
},
|
|
palette: {
|
|
type: "dark",
|
|
primary: {
|
|
main: "#1976d2",
|
|
},
|
|
},
|
|
});
|
|
|
|
export default Dark;
|