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