Skip to content

Commit

Permalink
change default colors
Browse files Browse the repository at this point in the history
  • Loading branch information
VeraZab committed Jan 10, 2024
1 parent 7fca57a commit 50fe872
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Controls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ const Controls: React.FC<ControlsProps> = ({

<Box sx={mainActionsContainerStyles}>
<Box sx={tileContainerStyles}>
<Button variant="outlined" onClick={tile}>
<Button variant="contained" color="secondary" onClick={tile} >
Tile
</Button>
</Box>
Expand Down
11 changes: 10 additions & 1 deletion src/theme.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
import { createTheme } from "@mui/material/styles";

export const theme = createTheme({});
export const theme = createTheme({
palette: {
primary: {
main: "#025159"
},
secondary: {
main: "#38a0ac"
}
}
});

0 comments on commit 50fe872

Please sign in to comment.