-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.js
More file actions
39 lines (36 loc) · 883 Bytes
/
theme.js
File metadata and controls
39 lines (36 loc) · 883 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
"use client";
import { createTheme } from '@mui/material/styles';
const theme = createTheme({
typography: {
fontFamily: 'SF Pro Display, SF Pro Icons, Helvetica Neue, Arial, sans-serif',
fontSize: 14,
},
palette: {
primary: { main: '#1565C0' },
secondary: { main: '#F57F17' },
background: { default: '#F5F5F5', paper: '#FFFFFF' },
},
components: {
MuiAppBar: {
styleOverrides: {
root: {
backgroundColor: '#0d1b4a',
backgroundImage: "url('/images/header.png')",
backgroundSize: 'auto 100%',
backgroundRepeat: 'repeat-x',
},
},
},
MuiTab: {
styleOverrides: {
root: { textTransform: 'none', fontWeight: 600 },
},
},
MuiButton: {
styleOverrides: {
root: { textTransform: 'none' },
},
},
},
});
export default theme;