From b5de6064a5f0478de31ae2f52b95a9a1b2d87c94 Mon Sep 17 00:00:00 2001 From: Viktor Fomin Date: Thu, 20 Jun 2024 10:33:10 +0300 Subject: [PATCH] Shared: Themes: fix missing --- packages/shared/themes/base.ts | 6 ++++++ packages/shared/themes/dark.ts | 6 ++++++ packages/shared/themes/globalColors.ts | 7 ++++++- 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/packages/shared/themes/base.ts b/packages/shared/themes/base.ts index 48aac81934..9b1a8af477 100644 --- a/packages/shared/themes/base.ts +++ b/packages/shared/themes/base.ts @@ -2065,6 +2065,9 @@ export const getBaseTheme = () => { borderColor: grayLightMid, borderColorTransition: lightGrayHover, + + color: black, + backgroundGroup: grayLightMid, }, }, @@ -2393,6 +2396,8 @@ export const getBaseTheme = () => { iconColor: black, color: gray, border: `1px solid ${grayDarkMid}`, + linkBackground: blueLightMid, + linkColor: white, }, versionHistory: { @@ -2735,6 +2740,7 @@ export const getBaseTheme = () => { settings: { iconFill: black, headerTitleColor: black, + descriptionColor: grayText, trashIcon: gray, article: { titleColor: lightGrayDark, diff --git a/packages/shared/themes/dark.ts b/packages/shared/themes/dark.ts index 0c84c02282..3bdf936060 100644 --- a/packages/shared/themes/dark.ts +++ b/packages/shared/themes/dark.ts @@ -2049,6 +2049,9 @@ const Dark: TTheme = { borderColor: grayDarkStrong, borderColorTransition: grayDarkStrong, + + color: white, + backgroundGroup: grayDarkMid, }, }, @@ -2376,6 +2379,8 @@ const Dark: TTheme = { iconColor: white, color: gray, border: `1px solid ${grayDarkMid}`, + linkBackground: blueLightMid, + linkColor: white, }, versionHistory: { @@ -2719,6 +2724,7 @@ const Dark: TTheme = { settings: { iconFill: white, headerTitleColor: white, + descriptionColor: grayDarkText, trashIcon: grayDark, article: { titleColor: grayStrong, diff --git a/packages/shared/themes/globalColors.ts b/packages/shared/themes/globalColors.ts index d54cbfaf13..d9fedd0d5a 100644 --- a/packages/shared/themes/globalColors.ts +++ b/packages/shared/themes/globalColors.ts @@ -56,9 +56,14 @@ export const globalColors = { lightSecondMainDisabled: "rgba(82, 153, 224, 0.6)", mainGreen: "#2DB482", - mainOrange: "#F58D31", // TODO: from kit + secondGreen: "#22C386", + mainOrange: "#F97A0B", + secondOrange: "#FF9933", + mainRed: "#F2665A", mainPurple: "#533ED1", secondPurple: "#8570BD", + mainBlueLight: "#13B7EC", + mainYellow: "#FFD30F", lightErrorStatus: "#F24724", darkErrorStatus: "#E06451",