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