ntfy/web/src/components/theme.js

37 lines
602 B
JavaScript
Raw Normal View History

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