blob: 531aa04b9f609afd4a5a1b2db1d9403e4d185de9 [file] [log] [blame]
ZBD7e88c222025-05-07 21:07:12 +08001// /styles/theme/theme.js
2import { createTheme } from '@mui/material/styles';
3
4const 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
31export default theme;