blob: 16323d2cc1b9946f70083d5c4a2a977914f34438 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import { lightGreen, blueGrey, grey } from "@material-ui/core/colors";
import { createMuiTheme } from "@material-ui/core/styles";
// A custom theme for this app
const theme = createMuiTheme({
palette: {
primary: {
light: lightGreen[300],
main: lightGreen[500],
dark: lightGreen[700],
},
secondary: {
light: grey[300],
main: grey[500],
dark: grey[800],
darkAccent: "#4d4d4d",
},
mode: "dark",
},
});
export default theme;
|