ntfy/web/src/components/theme.js

37 lines
607 B
JavaScript
Raw Normal View History

2023-05-23 21:13:01 +02:00
import { red } from "@mui/material/colors";
import { createTheme } from "@mui/material/styles";
2022-02-18 15:49:51 +01:00
const theme = createTheme({
palette: {
primary: {
2023-05-23 21:13:01 +02:00
main: "#338574",
2022-02-18 15:49:51 +01:00
},
secondary: {
2023-05-23 21:13:01 +02:00
main: "#6cead0",
2022-02-18 15:49:51 +01:00
},
error: {
main: red.A400,
},
},
2022-02-28 22:56:38 +01:00
components: {
MuiListItemIcon: {
styleOverrides: {
root: {
2023-05-23 21:13:01 +02:00
minWidth: "36px",
2022-02-28 22:56:38 +01:00
},
},
},
2022-03-04 18:10:11 +01:00
MuiCardContent: {
styleOverrides: {
root: {
2023-05-23 21:13:01 +02:00
":last-child": {
paddingBottom: "16px",
},
},
},
},
2022-02-28 22:56:38 +01:00
},
2022-02-18 15:49:51 +01:00
});
export default theme;