Fix configutation style

This commit is contained in:
Krzysztof Bialoglowicz 2019-09-10 18:43:34 +02:00
parent 7aa7cc87a6
commit 4b4b7fbf20

View file

@ -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
}, },