任何人都可以帮我创建自定义主题主题吗?我正在使用 TypeScript,我想要一些颜色,例如:
common: {
dakBlue: "..."
}
但问题是如何创建界面以在主题上接受这种颜色?已经尝试
declare module '@mui/material/styles' {
interface PaletteOptions {
common: {darkBlue: string; }
}
}
但不工作
任何人都可以帮我创建自定义主题主题吗?我正在使用 TypeScript,我想要一些颜色,例如:
common: {
dakBlue: "..."
}
但问题是如何创建界面以在主题上接受这种颜色?已经尝试
declare module '@mui/material/styles' {
interface PaletteOptions {
common: {darkBlue: string; }
}
}
但不工作