Files
ntfy/web/src/theme.js
Philipp Heckel 8c0f3b2304 Add dialog
2022-02-19 22:26:58 -05:00

20 lines
335 B
JavaScript

import { red } from '@mui/material/colors';
import { createTheme } from '@mui/material/styles';
// A custom theme for this app
const theme = createTheme({
palette: {
primary: {
main: '#338574',
},
secondary: {
main: '#6cead0',
},
error: {
main: red.A400,
},
},
});
export default theme;