authelia/web/src/themes/Dark.ts

17 lines
284 B
TypeScript
Raw Normal View History

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