Shared: Themes: fix missing

This commit is contained in:
Viktor Fomin 2024-06-19 16:32:50 +03:00
parent 5eec1dc070
commit a132cd12f9
3 changed files with 5 additions and 0 deletions

View File

@ -2846,6 +2846,8 @@ export const getBaseTheme = () => {
border: `1px solid ${grayLightMid}`,
errorBorder: `1px solid ${lightErrorStatus}`,
certificateBackground: grayLight,
textColor: gray,
errorColor: lightErrorStatus,
},
smtp: {
requirementColor: lightErrorStatus,

View File

@ -2830,6 +2830,8 @@ const Dark: TTheme = {
border: `1px solid ${grayDarkStrong}`,
errorBorder: `1px solid ${darkErrorStatus}`,
certificateBackground: grayDarkStrong,
textColor: grayDark,
errorColor: darkErrorStatus,
},
smtp: {
requirementColor: darkErrorStatus,

View File

@ -57,6 +57,7 @@ export const globalColors = {
mainGreen: "#2DB482",
mainOrange: "#F58D31", // TODO: from kit
mainPurple: "#533ED1",
secondPurple: "#8570BD",
lightErrorStatus: "#F24724",