Skip to content

Commit 74bfee6

Browse files
committed
Changed some of the palette colours and added typography
1 parent 369923a commit 74bfee6

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

src/colourscheme.ts

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,15 @@ import { createTheme } from "@mui/material/styles";
33
export const defaultColours = createTheme({
44
palette: {
55
primary: {
6-
main: "#C0C0C0"
6+
main: "#000080",
77
// light: currently calculated automatically by MUI
88
// dark: currently calculated automatically by MUI
9-
// contrastText: currently calculated automatically by MUI
10-
}
11-
}
9+
contrastText: "#FFFFFF"
10+
},
11+
},
12+
typography: {
13+
button: {
14+
textTransform: "none",
15+
},
16+
},
1217
});

0 commit comments

Comments
 (0)