diff --git a/Views/BuildingBlocks/ArticleCell.swift b/Views/BuildingBlocks/ArticleCell.swift index a2a4ed16..1630ae3e 100644 --- a/Views/BuildingBlocks/ArticleCell.swift +++ b/Views/BuildingBlocks/ArticleCell.swift @@ -42,7 +42,9 @@ struct ArticleCell: View { Spacer().frame(height: 2) Group { if let snippet = snippet { - Text(AttributedString(snippet)).lineLimit(4) + Text(AttributedString(snippet) + .settingAttributes(AttributeContainer([.foregroundColor: Color.primary]))) + .lineLimit(4) } }.font(.caption).multilineTextAlignment(.leading) Spacer(minLength: 0)