diff --git a/src/components/NoteList.tsx b/src/components/NoteList.tsx index 74e824bf..46ce7478 100644 --- a/src/components/NoteList.tsx +++ b/src/components/NoteList.tsx @@ -293,16 +293,23 @@ function NoteListInner({ entries, selection, selectedNote, modifiedFiles, onSele }).map(({ label, type }) => { const count = typeCounts.get(type) ?? 0 const isActive = typeFilter === type + const pillColor = type ? getTypeColor(type) : 'var(--accent-blue)' + const pillLightColor = type ? getTypeLightColor(type) : 'var(--accent-blue-light)' return (