experiment(BookmarkRow): tag pills blue fill → neutral systemGray6, secondary text

This commit is contained in:
Krishna Kumar
2026-05-23 01:11:03 -05:00
parent 18f1564d3b
commit 20f06c8440

View File

@@ -63,11 +63,11 @@ struct BookmarkRow: View {
HStack(spacing: 6) {
ForEach(effectiveTags, id: \.self) { tag in
Text(tag)
.font(.system(size: 12, weight: .medium))
.foregroundStyle(.blue)
.padding(.horizontal, 9)
.padding(.vertical, 4)
.background(Color.blue.opacity(0.1))
.font(.system(size: 11, weight: .medium))
.foregroundStyle(.secondary)
.padding(.horizontal, 8)
.padding(.vertical, 3)
.background(Color(.systemGray6))
.clipShape(Capsule())
}
}