From 01cf496eed2ff5e4fb630287753c966954f47e67 Mon Sep 17 00:00:00 2001 From: Viktor Fomin Date: Fri, 14 Jun 2024 12:52:02 +0500 Subject: [PATCH] Shared: Themes: fix missing --- packages/shared/themes/base.ts | 8 ++++++++ packages/shared/themes/dark.ts | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/packages/shared/themes/base.ts b/packages/shared/themes/base.ts index 6cd403050d..6af51a20a2 100644 --- a/packages/shared/themes/base.ts +++ b/packages/shared/themes/base.ts @@ -2782,6 +2782,8 @@ export const getBaseTheme = () => { appearance: { themeAddBackground: grayLightMid, + accentBoxBackground: grayLightMid, + buttonBoxBackground: grayLightMid, }, whiteLabel: { @@ -2889,6 +2891,12 @@ export const getBaseTheme = () => { grayBackgroundText: grayText, descriptionColor: lightGrayDark, }, + deleteData: { + borderTop: `1px solid ${grayLightMid}`, + }, + webhooks: { + border: `1px solid ${grayLightMid}`, + }, }, wizard: { diff --git a/packages/shared/themes/dark.ts b/packages/shared/themes/dark.ts index 2a6db40e7f..d27c4b9950 100644 --- a/packages/shared/themes/dark.ts +++ b/packages/shared/themes/dark.ts @@ -2766,6 +2766,8 @@ const Dark: TTheme = { appearance: { themeAddBackground: grayDarkStrong, + accentBoxBackground: grayDarkStrong, + buttonBoxBackground: grayDarkStrong, }, whiteLabel: { @@ -2870,6 +2872,12 @@ const Dark: TTheme = { grayBackgroundText: grayDark, descriptionColor: darkGrayDark, }, + deleteData: { + borderTop: `1px solid ${grayDarkMid}`, + }, + webhooks: { + border: `1px solid ${grayDarkMid}`, + }, }, wizard: {