use slightly less dark gray for selected tree node background to improve unread count readability

This commit is contained in:
Athou
2024-01-01 18:24:39 +01:00
parent d9a9a01a60
commit 1ae5111f76

View File

@@ -28,7 +28,7 @@ const useStyles = tss
}>() }>()
.create(({ theme, colorScheme, selected, hasError, hasUnread }) => { .create(({ theme, colorScheme, selected, hasError, hasUnread }) => {
let backgroundColor = "inherit" 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 let color
if (hasError) { if (hasError) {