Shared: Themes: fix missing

This commit is contained in:
Viktor Fomin 2024-06-20 11:29:33 +03:00
parent cca52d5b1f
commit 350967144e
3 changed files with 12 additions and 0 deletions

View File

@ -2936,6 +2936,7 @@ export const getBaseTheme = () => {
storageManagement: {
grayBackgroundText: grayText,
descriptionColor: lightGrayDark,
dividerColor: grayLightMid,
},
deleteData: {
borderTop: `1px solid ${grayLightMid}`,
@ -3170,6 +3171,10 @@ export const getBaseTheme = () => {
sideColor: gray,
nameColor: grayStrong,
},
publicRoom: {
border: `1px solid ${lightGraySelected}`,
},
};
};

View File

@ -2917,6 +2917,7 @@ const Dark: TTheme = {
storageManagement: {
grayBackgroundText: grayDark,
descriptionColor: darkGrayDark,
dividerColor: grayDarkMid,
},
deleteData: {
borderTop: `1px solid ${grayDarkMid}`,
@ -3151,6 +3152,10 @@ const Dark: TTheme = {
sideColor: grayDark,
nameColor: grayDarkStrong,
},
publicRoom: {
border: `1px solid ${lightGraySelected}`,
},
};
export default Dark;

View File

@ -63,6 +63,7 @@ export const globalColors = {
mainPurple: "#533ED1",
secondPurple: "#8570BD",
mainBlueLight: "#13B7EC",
secondBlue: "#11A3D4",
mainYellow: "#FFD30F",
lightErrorStatus: "#F24724",
@ -107,5 +108,6 @@ export const globalColors = {
androidColor: "#A8D548",
//
tickColor: "#20D21F",
shuttleGrey: "#63686A",
};