mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-06-25 00:41:22 +00:00
30 lines
496 B
TypeScript
30 lines
496 B
TypeScript
import '@mui/material/styles';
|
|
|
|
declare module '@mui/material/styles' {
|
|
interface TypeBackground {
|
|
surface: string;
|
|
}
|
|
interface Palette {
|
|
border: {
|
|
main: string;
|
|
subtle: string;
|
|
};
|
|
other: {
|
|
positive: string;
|
|
danger: string;
|
|
unread: string;
|
|
};
|
|
}
|
|
interface PaletteOptions {
|
|
border?: {
|
|
main?: string;
|
|
subtle?: string;
|
|
};
|
|
other?: {
|
|
positive?: string;
|
|
danger?: string;
|
|
unread?: string;
|
|
};
|
|
}
|
|
}
|