diff --git a/packages/shared/components/empty-view/EmptyView.styled.ts b/packages/shared/components/empty-view/EmptyView.styled.ts index 5490cd7b10..7f9a37f1fb 100644 --- a/packages/shared/components/empty-view/EmptyView.styled.ts +++ b/packages/shared/components/empty-view/EmptyView.styled.ts @@ -68,9 +68,10 @@ export const EmptyViewBody = styled.div` max-width: fit-content; text-decoration: none; - color: #4781d1; + color: ${(props) => props.theme.emptyView.linkColor}; + svg { - color: #4781d1; + color: inherit; g { fill: currentColor; } diff --git a/packages/shared/themes/base.ts b/packages/shared/themes/base.ts index f8ca61b453..c23359653a 100644 --- a/packages/shared/themes/base.ts +++ b/packages/shared/themes/base.ts @@ -2372,6 +2372,8 @@ export const getBaseTheme = () => { }, emptyView: { + linkColor: lightBlueMain, + items: { hoverColor: grayLight, pressColor: lightGraySelected, diff --git a/packages/shared/themes/dark.ts b/packages/shared/themes/dark.ts index 6a3306012c..e1807d4d8e 100644 --- a/packages/shared/themes/dark.ts +++ b/packages/shared/themes/dark.ts @@ -2348,6 +2348,7 @@ const Dark: TTheme = { }, emptyView: { + linkColor: lightBlueMain, items: { hoverColor: darkGrayLight, pressColor: grayDarkStrong,