From c5c2689b76f64414092ee2f0bec7b5d61254af3d Mon Sep 17 00:00:00 2001 From: Viktor Fomin Date: Fri, 9 Aug 2024 14:07:37 +0300 Subject: [PATCH] Shared: Themes: add fields --- packages/shared/themes/base.ts | 2 ++ packages/shared/themes/dark.ts | 3 +++ 2 files changed, 5 insertions(+) diff --git a/packages/shared/themes/base.ts b/packages/shared/themes/base.ts index fd71622f0a..378b2e7516 100644 --- a/packages/shared/themes/base.ts +++ b/packages/shared/themes/base.ts @@ -3055,6 +3055,8 @@ export const getBaseTheme = () => { dataFontColor: white, dataFontColorBlack: black, + notAvailableBackground: grayLight, + textColor: black, }, }, diff --git a/packages/shared/themes/dark.ts b/packages/shared/themes/dark.ts index 0e5ea72e49..fc9a64c56b 100644 --- a/packages/shared/themes/dark.ts +++ b/packages/shared/themes/dark.ts @@ -3033,6 +3033,9 @@ const Dark: TTheme = { dataFontColor: white, dataFontColorBlack: white, + + notAvailableBackground: grayDark, + textColor: white, }, },