From a132cd12f94c30153336c84f4290a516517e069c Mon Sep 17 00:00:00 2001 From: Viktor Fomin Date: Wed, 19 Jun 2024 16:32:50 +0300 Subject: [PATCH] Shared: Themes: fix missing --- packages/shared/themes/base.ts | 2 ++ packages/shared/themes/dark.ts | 2 ++ packages/shared/themes/globalColors.ts | 1 + 3 files changed, 5 insertions(+) diff --git a/packages/shared/themes/base.ts b/packages/shared/themes/base.ts index 5742dae5ab..48aac81934 100644 --- a/packages/shared/themes/base.ts +++ b/packages/shared/themes/base.ts @@ -2846,6 +2846,8 @@ export const getBaseTheme = () => { border: `1px solid ${grayLightMid}`, errorBorder: `1px solid ${lightErrorStatus}`, certificateBackground: grayLight, + textColor: gray, + errorColor: lightErrorStatus, }, smtp: { requirementColor: lightErrorStatus, diff --git a/packages/shared/themes/dark.ts b/packages/shared/themes/dark.ts index a77bb05c2a..0c84c02282 100644 --- a/packages/shared/themes/dark.ts +++ b/packages/shared/themes/dark.ts @@ -2830,6 +2830,8 @@ const Dark: TTheme = { border: `1px solid ${grayDarkStrong}`, errorBorder: `1px solid ${darkErrorStatus}`, certificateBackground: grayDarkStrong, + textColor: grayDark, + errorColor: darkErrorStatus, }, smtp: { requirementColor: darkErrorStatus, diff --git a/packages/shared/themes/globalColors.ts b/packages/shared/themes/globalColors.ts index 11f517051c..d54cbfaf13 100644 --- a/packages/shared/themes/globalColors.ts +++ b/packages/shared/themes/globalColors.ts @@ -57,6 +57,7 @@ export const globalColors = { mainGreen: "#2DB482", mainOrange: "#F58D31", // TODO: from kit + mainPurple: "#533ED1", secondPurple: "#8570BD", lightErrorStatus: "#F24724",