ntfy/web/src/theme.js

20 lines
335 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';
// A custom theme for this app
const theme = createTheme({
palette: {
primary: {
main: '#556cd6',
},
secondary: {
main: '#19857b',
},
error: {
main: red.A400,
},
},
});
export default theme;