use darker orange in light theme

This commit is contained in:
Athou
2022-10-12 12:23:07 +02:00
parent 58852502dc
commit e75c4554a5

View File

@@ -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