ntfy/web/src/components/theme.js

37 lines
602 B
JavaScript
Raw Normal View History

2022-02-18 14:49:51 +00:00
import { red } from '@mui/material/colors';
import { createTheme } from '@mui/material/styles';
const theme = createTheme({
palette: {
primary: {
2022-02-20 00:48:33 +00:00
main: '#338574',
2022-02-18 14:49:51 +00:00
},
secondary: {
2022-02-20 03:26:58 +00:00
main: '#6cead0',
2022-02-18 14:49:51 +00:00
},
error: {
main: red.A400,
},
},
2022-02-28 21:56:38 +00:00
components: {
MuiListItemIcon: {
styleOverrides: {
root: {
minWidth: '36px',
},
},
},
2022-03-04 17:10:11 +00:00
MuiCardContent: {
styleOverrides: {
root: {
':last-child': {
paddingBottom: '16px'
}
}
}
}
2022-02-28 21:56:38 +00:00
},
2022-02-18 14:49:51 +00:00
});
export default theme;