ntfy/web/src/components/theme.js

37 lines
602 B
JavaScript
Raw Normal View History

2022-02-18 15:49:51 +01:00
import { red } from '@mui/material/colors';
import { createTheme } from '@mui/material/styles';
const theme = createTheme({
palette: {
primary: {
2022-02-20 01:48:33 +01:00
main: '#338574',
2022-02-18 15:49:51 +01:00
},
secondary: {
2022-02-20 04:26:58 +01: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: {
minWidth: '36px',
},
},
},
2022-03-04 18:10:11 +01:00
MuiCardContent: {
styleOverrides: {
root: {
':last-child': {
paddingBottom: '16px'
}
}
}
}
2022-02-28 22:56:38 +01:00
},
2022-02-18 15:49:51 +01:00
});
export default theme;