1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-10-02 21:24:11 +02:00
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: {
2022-02-20 01:48:33 +01:00
main: '#338574',
2022-02-18 15:49:51 +01:00
},
secondary: {
2022-02-20 01:48:33 +01:00
main: '#338574',
2022-02-18 15:49:51 +01:00
},
error: {
main: red.A400,
},
},
});
export default theme;