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