Make profile picture placeholder gray instead of purple

This commit is contained in:
William Casarin
2023-06-10 11:33:18 +02:00
parent ba3a6b07b2
commit c59d2a96af

View File

@@ -92,6 +92,7 @@ struct InnerProfilePicView: View {
var Placeholder: some View {
Circle()
.frame(width: size, height: size)
.foregroundColor(DamusColors.mediumGrey)
.overlay(Circle().stroke(highlight_color(highlight), lineWidth: pfp_line_width(highlight)))
.padding(2)
}