ntfy/web/src/components/theme.js
2022-03-04 12:10:11 -05:00

37 lines
602 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;