From 1ae5111f768ecaa7e0a5c8e8b8cab9710dc3add5 Mon Sep 17 00:00:00 2001 From: Athou Date: Mon, 1 Jan 2024 18:24:39 +0100 Subject: [PATCH] use slightly less dark gray for selected tree node background to improve unread count readability --- commafeed-client/src/components/sidebar/TreeNode.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commafeed-client/src/components/sidebar/TreeNode.tsx b/commafeed-client/src/components/sidebar/TreeNode.tsx index 03d7b4fd6..afd179008 100644 --- a/commafeed-client/src/components/sidebar/TreeNode.tsx +++ b/commafeed-client/src/components/sidebar/TreeNode.tsx @@ -28,7 +28,7 @@ const useStyles = tss }>() .create(({ theme, colorScheme, selected, hasError, hasUnread }) => { let backgroundColor = "inherit" - if (selected) backgroundColor = colorScheme === "dark" ? theme.colors.dark[4] : theme.colors.gray[3] + if (selected) backgroundColor = colorScheme === "dark" ? theme.colors.dark[4] : theme.colors.gray[1] let color if (hasError) {