From 4b4b7fbf20df96994c76b6e68004c83e0ccbaf63 Mon Sep 17 00:00:00 2001 From: Krzysztof Bialoglowicz Date: Tue, 10 Sep 2019 18:43:34 +0200 Subject: [PATCH] Fix configutation style --- src/theme.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/theme.ts b/src/theme.ts index 0e36ea1e3..7e0dbc5ea 100644 --- a/src/theme.ts +++ b/src/theme.ts @@ -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 },