diff --git a/frontend/src/components/heaps/HeapsPanel.tsx b/frontend/src/components/heaps/HeapsPanel.tsx index c7e4ca1..c883362 100644 --- a/frontend/src/components/heaps/HeapsPanel.tsx +++ b/frontend/src/components/heaps/HeapsPanel.tsx @@ -266,10 +266,10 @@ export function HeapsPanel() { className={clsx( 'group relative flex cursor-pointer items-center gap-1 rounded px-2 py-1 text-[13px]', isFiltered ? 'bg-primary/20 text-primary' : 'text-text hover:bg-surface-2', - // Active-heap row gets a left accent stripe so the + // Active-heap row gets a soft primary wash so the // user always knows where Pick / T will land, even - // when navigating to a different section. - isActive && !isFiltered && 'bg-pick/10 text-text', + // when viewing a different section. + isActive && !isFiltered && 'bg-primary/8 text-text', isDropTarget && 'ring-2 ring-primary bg-primary/10' )} style={{ paddingLeft: '32px' }} @@ -312,11 +312,7 @@ export function HeapsPanel() { @@ -347,7 +343,7 @@ export function HeapsPanel() { {isActive && ( Active diff --git a/frontend/src/components/timeline/PhotoThumbnail.tsx b/frontend/src/components/timeline/PhotoThumbnail.tsx index 2d20026..0583f93 100644 --- a/frontend/src/components/timeline/PhotoThumbnail.tsx +++ b/frontend/src/components/timeline/PhotoThumbnail.tsx @@ -196,25 +196,27 @@ export function PhotoThumbnail({ )} - {/* Rating Stars — sit in a translucent dark pill so yellow stars - * don't disappear against a yellow / sandy photo. */} + {/* Rating Stars — same primary blue as every other indicator, + * in a matching pill so the rating reads as part of the same + * badge family instead of a yellow accent from a different + * palette. */} {photo.rating > 0 && ( -
+
{Array.from({ length: photo.rating }).map((_, i) => ( - + ))}
)} - {/* Flag Indicators — every badge gets a white ring so it survives - * any photo content. */} + {/* Flag Indicators — all share the same blue-primary chip style + * + white ring so the family reads as one thing. The discard + * indicator is the only exception: it stays neutral-dark + * because mixing it with the positive blue chips would conflate + * "in this collection" with "trashed". */}
{isInActiveHeap && (
@@ -227,7 +229,7 @@ export function PhotoThumbnail({ )} {photo.is_duplicate && (
@@ -235,7 +237,7 @@ export function PhotoThumbnail({ )} {photo.is_discarded && (