diff --git a/src/pages/home/report/ReportActionItem.js b/src/pages/home/report/ReportActionItem.js index 2977a937dc83..7d264396a47f 100644 --- a/src/pages/home/report/ReportActionItem.js +++ b/src/pages/home/report/ReportActionItem.js @@ -148,8 +148,8 @@ function ReportActionItem(props) { const isReportActionLinked = props.linkedReportActionID === props.action.reportActionID; const highlightedBackgroundColorIfNeeded = useMemo( - () => (isReportActionLinked ? StyleUtils.getBackgroundColorStyle(theme.rowHover) : {}), - [StyleUtils, isReportActionLinked, theme.rowHover], + () => (isReportActionLinked ? StyleUtils.getBackgroundColorStyle(theme.hoverComponentBG) : {}), + [StyleUtils, isReportActionLinked, theme.hoverComponentBG], ); const originalMessage = lodashGet(props.action, 'originalMessage', {}); const isDeletedParentAction = ReportActionsUtils.isDeletedParentAction(props.action); diff --git a/src/styles/theme/themes/dark.ts b/src/styles/theme/themes/dark.ts index 05c057a66a6a..70817e24b0bb 100644 --- a/src/styles/theme/themes/dark.ts +++ b/src/styles/theme/themes/dark.ts @@ -35,7 +35,6 @@ const darkTheme = { transparent: colors.transparent, signInPage: colors.green800, darkSupportingText: colors.productDark800, - rowHover: colors.productDark300, // Additional keys overlay: colors.productDark400, diff --git a/src/styles/theme/themes/light.ts b/src/styles/theme/themes/light.ts index 072582a90bdf..7f1aa2a1274b 100644 --- a/src/styles/theme/themes/light.ts +++ b/src/styles/theme/themes/light.ts @@ -35,7 +35,6 @@ const lightTheme = { transparent: colors.transparent, signInPage: colors.green800, darkSupportingText: colors.productDark800, - rowHover: colors.productLight300, // Additional keys overlay: colors.productLight400, diff --git a/src/styles/theme/types.ts b/src/styles/theme/types.ts index 549f7243187f..56da65ddd17d 100644 --- a/src/styles/theme/types.ts +++ b/src/styles/theme/types.ts @@ -38,7 +38,6 @@ type ThemeColors = { transparent: Color; signInPage: Color; darkSupportingText: Color; - rowHover: Color; // Additional keys overlay: Color;