From f23bfaf694491b63ff5b59e1b66403980aace05a Mon Sep 17 00:00:00 2001 From: Athou Date: Fri, 28 Apr 2023 07:41:37 +0200 Subject: [PATCH] use a different color for hover than read and unread backgrounds --- commafeed-client/src/components/content/FeedEntry.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commafeed-client/src/components/content/FeedEntry.tsx b/commafeed-client/src/components/content/FeedEntry.tsx index d41d0014..17b26cf9 100644 --- a/commafeed-client/src/components/content/FeedEntry.tsx +++ b/commafeed-client/src/components/content/FeedEntry.tsx @@ -35,7 +35,7 @@ const useStyles = createStyles((theme, props: FeedEntryProps & { viewMode?: View let backgroundHoverColor = backgroundColor if (!props.expanded) { - backgroundHoverColor = theme.colorScheme === "dark" ? theme.colors.dark[7] : theme.colors.gray[0] + backgroundHoverColor = theme.colorScheme === "dark" ? theme.colors.dark[6] : theme.colors.gray[1] } const styles = {