Shared: Themes: add themes for management

This commit is contained in:
Viktor Fomin 2024-06-13 16:51:32 +05:00
parent a6c91aa37c
commit 9d194e5378
2 changed files with 14 additions and 0 deletions

View File

@ -3069,6 +3069,13 @@ export const getBaseTheme = () => {
linkColor: lightBlueMain,
descriptionColor: gray,
},
management: {
textColor: gray,
errorColor: lightErrorStatus,
sideColor: gray,
nameColor: grayStrong,
},
};
};

View File

@ -3050,6 +3050,13 @@ const Dark: TTheme = {
linkColor: white,
descriptionColor: darkGrayDark,
},
management: {
textColor: grayDark,
errorColor: darkErrorStatus,
sideColor: grayDark,
nameColor: grayDarkStrong,
},
};
export default Dark;