Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
21 lines
354 B
JavaScript
21 lines
354 B
JavaScript
import { createTheme } from '@mui/material/styles';
|
|
import { red } from '@mui/material/colors';
|
|
|
|
// Create a theme instance.
|
|
const theme = createTheme({
|
|
cssVariables: true,
|
|
palette: {
|
|
primary: {
|
|
main: '#556cd6',
|
|
},
|
|
secondary: {
|
|
main: '#19857b',
|
|
},
|
|
error: {
|
|
main: red.A400,
|
|
},
|
|
},
|
|
});
|
|
|
|
export default theme;
|