Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianWielga committed Aug 11, 2024
1 parent 6390fb4 commit 1673d92
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions src/components/theme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,38 +4,38 @@ import { createTheme as createMuiTheme } from "@mui/material/styles";
export const theme = createMuiTheme({
palette: {
mode: "dark",
primary: {
main: lightGreen["300"],
},
secondary: {
main: deepPurple["200"],
},
error: {
main: `#F25C6E`,
},
success: {
main: `#5CB85C`,
contrastText: `#FFFFFF`,
},
background: {
default: "#B3B3B3",
paper: "#4D4D4D",
},
// primary: {
// main: lightGreen["300"],
// },
// secondary: {
// main: deepPurple["200"],
// },
// error: {
// main: `#F25C6E`,
// },
// success: {
// main: `#5CB85C`,
// contrastText: `#FFFFFF`,
// },
// background: {
// default: "#B3B3B3",
// paper: "#4D4D4D",
// },
},
components: {
MuiListItemIcon: {
styleOverrides: {
root: {
color: 'currentColor',
}
}
},
MuiIconButton: {
styleOverrides: {
root: ({ theme }) => ({
color: theme.palette.primary.main,
})
}
},
}
// components: {
// MuiListItemIcon: {
// styleOverrides: {
// root: {
// color: 'currentColor',
// }
// }
// },
// MuiIconButton: {
// styleOverrides: {
// root: ({ theme }) => ({
// color: theme.palette.primary.main,
// })
// }
// },
// }
});

0 comments on commit 1673d92

Please sign in to comment.