1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-10-03 05:34:08 +02:00
ntfy/web/src/theme.js
Philipp Heckel 4c4e689af4 WIP: React
2022-02-18 09:49:51 -05:00

19 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: '#556cd6',
},
secondary: {
main: '#19857b',
},
error: {
main: red.A400,
},
},
});
export default theme;