ntfy/web/src/components/theme.js

22 lines
342 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,
},
body: {
main: '#444',
}
2022-02-18 15:49:51 +01:00
},
});
export default theme;