Fix configutation style
This commit is contained in:
parent
7aa7cc87a6
commit
4b4b7fbf20
1 changed files with 3 additions and 0 deletions
|
@ -18,6 +18,8 @@ export type IThemeColors = Record<
|
|||
background: Record<"default" | "paper", string>;
|
||||
} & {
|
||||
checkbox: Record<"default" | "disabled", string>;
|
||||
} & {
|
||||
divider: string;
|
||||
} & {
|
||||
font: Record<
|
||||
"default" | "gray" | "button" | "textButton" | "textDisabled",
|
||||
|
@ -395,6 +397,7 @@ export default (colors: IThemeColors): Theme =>
|
|||
},
|
||||
palette: {
|
||||
background: colors.background,
|
||||
divider: colors.divider,
|
||||
error: {
|
||||
main: colors.error
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue