From 2e66688239cad84c468bb48c8945427bfbd144f3 Mon Sep 17 00:00:00 2001 From: Viktor Fomin Date: Mon, 17 Jun 2024 15:19:47 +0300 Subject: [PATCH] Shared: Themes: fix missing --- packages/shared/themes/base.ts | 8 ++++++++ packages/shared/themes/dark.ts | 10 +++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/packages/shared/themes/base.ts b/packages/shared/themes/base.ts index 9a08bf8e7d..89fe920753 100644 --- a/packages/shared/themes/base.ts +++ b/packages/shared/themes/base.ts @@ -1857,6 +1857,7 @@ export const getBaseTheme = () => { roleSelectorArrowColor: gray, createLink: gray, linkAccessComboboxExpired: gray, + crossFill: lightGrayDark, }, history: { @@ -2686,6 +2687,7 @@ export const getBaseTheme = () => { downloadDialog: { background: grayLight, textColor: gray, + iconFill: black, }, client: { @@ -2809,6 +2811,11 @@ export const getBaseTheme = () => { dataFontColorBlack: black, }, + companyInfo: { + border: `1px dashed ${black}`, + color: gray, + }, + dns: { errorColor: lightErrorStatus, }, @@ -3103,6 +3110,7 @@ export const getBaseTheme = () => { borderColor: grayStrong, secondaryColor: lightGrayDark, previewBackgroundColor: lightGrayHover, + linkHelpColor: lightGrayDark, }, sideBarRow: { titleColor: black, diff --git a/packages/shared/themes/dark.ts b/packages/shared/themes/dark.ts index fb8eb281d3..bcd8b0eff3 100644 --- a/packages/shared/themes/dark.ts +++ b/packages/shared/themes/dark.ts @@ -1842,6 +1842,7 @@ const Dark: TTheme = { roleSelectorArrowColor: gray, createLink: grayDark, linkAccessComboboxExpired: gray, + crossFill: lightGrayDark, }, history: { @@ -2671,6 +2672,7 @@ const Dark: TTheme = { downloadDialog: { background: darkGrayLight, textColor: grayDark, + iconFill: black, }, client: { @@ -2794,6 +2796,11 @@ const Dark: TTheme = { dataFontColorBlack: white, }, + companyInfo: { + border: `1px dashed ${white}`, + color: grayDark, + }, + dns: { errorColor: darkErrorStatus, }, @@ -3066,7 +3073,7 @@ const Dark: TTheme = { background: darkGrayLight, title: white, description: darkGrayDark, - textColor: black, + textColor: white, iconFill: darkStatusWarning, }, @@ -3085,6 +3092,7 @@ const Dark: TTheme = { borderColor: grayDarkStrong, secondaryColor: darkGrayDark, previewBackgroundColor: lightDarkGrayHover, + linkHelpColor: darkGrayDark, }, sideBarRow: {