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>;
|
background: Record<"default" | "paper", string>;
|
||||||
} & {
|
} & {
|
||||||
checkbox: Record<"default" | "disabled", string>;
|
checkbox: Record<"default" | "disabled", string>;
|
||||||
|
} & {
|
||||||
|
divider: string;
|
||||||
} & {
|
} & {
|
||||||
font: Record<
|
font: Record<
|
||||||
"default" | "gray" | "button" | "textButton" | "textDisabled",
|
"default" | "gray" | "button" | "textButton" | "textDisabled",
|
||||||
|
@ -395,6 +397,7 @@ export default (colors: IThemeColors): Theme =>
|
||||||
},
|
},
|
||||||
palette: {
|
palette: {
|
||||||
background: colors.background,
|
background: colors.background,
|
||||||
|
divider: colors.divider,
|
||||||
error: {
|
error: {
|
||||||
main: colors.error
|
main: colors.error
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue