From e75c4554a5a3f8a267e0a4dd6b1eb4325d0a0d40 Mon Sep 17 00:00:00 2001 From: Athou Date: Wed, 12 Oct 2022 12:23:07 +0200 Subject: [PATCH] use darker orange in light theme --- 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 a6c5bb23..f7fcf9c4 100644 --- a/commafeed-client/src/components/content/FeedEntry.tsx +++ b/commafeed-client/src/components/content/FeedEntry.tsx @@ -36,7 +36,7 @@ const useStyles = createStyles((theme, props: FeedEntryProps) => { } if (props.showSelectionIndicator) { - styles.paper.borderLeftColor = theme.colors.orange[4] + styles.paper.borderLeftColor = theme.colorScheme === "dark" ? theme.colors.orange[4] : theme.colors.orange[6] } return styles