ZBD | 7e88c22 | 2025-05-07 21:07:12 +0800 | [diff] [blame] | 1 | // /styles/theme/theme.js |
| 2 | import { createTheme } from '@mui/material/styles'; |
| 3 | |
| 4 | const theme = createTheme({ |
| 5 | palette: { |
| 6 | primary: { |
| 7 | main: '#1976d2', // 你可以更改为你需要的颜色 |
| 8 | }, |
| 9 | secondary: { |
| 10 | main: '#dc004e', |
| 11 | }, |
| 12 | background: { |
| 13 | default: '#fafafa', // 背景颜色 |
| 14 | }, |
| 15 | }, |
| 16 | typography: { |
| 17 | fontFamily: '"Roboto", "Helvetica", "Arial", sans-serif', |
| 18 | h1: { |
| 19 | fontWeight: 700, |
| 20 | }, |
| 21 | h2: { |
| 22 | fontWeight: 600, |
| 23 | }, |
| 24 | // 你可以根据需求自定义更多字体样式 |
| 25 | }, |
| 26 | shape: { |
| 27 | borderRadius: 8, // 控制组件的圆角 |
| 28 | }, |
| 29 | }); |
| 30 | |
| 31 | export default theme; |