-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy paththeme.ts
More file actions
32 lines (31 loc) · 753 Bytes
/
Copy paththeme.ts
File metadata and controls
32 lines (31 loc) · 753 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
import themeColor from "@material-ui/core/colors/cyan";
import { createTheme } from "@material-ui/core/styles";
export const customTheme = createTheme({
breakpoints: {
values: {
xs: 0,
sm: 600,
md: 960,
lg: 1460,
xl: 1920,
},
},
typography: {
fontFamily: [
"Montserrat",
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
"Roboto",
'"Helvetica Neue"',
"Arial",
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
].join(","),
},
palette: {
primary: themeColor,
},
});