Skip to content

Commit

Permalink
use slightly less dark gray for selected tree node background to impr…
Browse files Browse the repository at this point in the history
…ove unread count readability
  • Loading branch information
Athou committed Jan 1, 2024
1 parent d9a9a01 commit 1ae5111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commafeed-client/src/components/sidebar/TreeNode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 1ae5111

Please sign in to comment.