ntfy/web/src/components/theme.js
2023-05-23 21:13:17 +02:00

36 lines
607 B
JavaScript

import { red } from "@mui/material/colors";
import { createTheme } from "@mui/material/styles";
const theme = createTheme({
palette: {
primary: {
main: "#338574",
},
secondary: {
main: "#6cead0",
},
error: {
main: red.A400,
},
},
components: {
MuiListItemIcon: {
styleOverrides: {
root: {
minWidth: "36px",
},
},
},
MuiCardContent: {
styleOverrides: {
root: {
":last-child": {
paddingBottom: "16px",
},
},
},
},
},
});
export default theme;