forked from rage/java-programming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.js
More file actions
41 lines (39 loc) · 728 Bytes
/
theme.js
File metadata and controls
41 lines (39 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { red, blue } from "@material-ui/core/colors"
import { createTheme } from "@material-ui/core/styles"
// A custom theme for this app
const theme = createTheme({
palette: {
primary: {
light: blue[300],
main: blue[500],
dark: blue[700],
},
secondary: {
light: red[300],
main: red[500],
dark: red[700],
},
},
typography: {
useNextVariants: true,
},
overrides: {
MuiButton: {
label: {
textTransform: "none",
},
root: {
textTransform: "none",
},
},
MuiTypography: {
body2: {
fontSize: "16px",
},
subheading: {
fontSize: "18px",
},
},
},
})
export default theme