You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
394 B

  1. import { createMuiTheme } from "@material-ui/core/styles";
  2. import red from "@material-ui/core/colors/red";
  3. // Create a theme instance.
  4. const theme = createMuiTheme({
  5. palette: {
  6. primary: {
  7. main: "#556cd6",
  8. },
  9. secondary: {
  10. main: "#19857b",
  11. },
  12. error: {
  13. main: red.A400,
  14. },
  15. background: {
  16. default: "#fff",
  17. },
  18. },
  19. });
  20. export default theme;