-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.js
47 lines (45 loc) · 987 Bytes
/
theme.js
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
42
43
44
45
46
47
import { createMuiTheme, responsiveFontSizes } from '@material-ui/core/styles';
// Create a theme instance.
const theme = responsiveFontSizes(createMuiTheme({
borderRadius: 4,
imageBorder: '1px solid rgba(255, 255, 255, 0.25)',
palette: {
type: 'dark',
divider: 'rgba(255, 255, 255, 0.25)',
image: {
hover: 'rgba(0, 0, 0, 0.25)',
},
text: {
primary: 'rgba(255, 255, 255, 0.75)',
highlight: 'rgba(255, 255, 255, 0.9)',
gold: 'rgba(255, 183, 77, 0.95)',
},
background: {
dark: 'rgba(0, 0, 0, 0.1)',
}
},
typography: {
h1: {
fontSize: '2.25rem',
fontWeight: 600,
},
h2: {
fontSize: '1.75rem',
fontWeight: 400,
color: 'rgba(255, 183, 77, 1)',
},
h3: {
fontSize: '1.125rem',
fontWeight: 400,
},
h5: {
color: '#fff',
},
h6: {
fontSize: '1.2rem',
fontWeight: 400,
color: '#fff',
},
},
}));
export default theme;