From 62dfc24e585b0de50f3ba8d3c32140ec8b01b330 Mon Sep 17 00:00:00 2001 From: ericholguin Date: Fri, 26 May 2023 19:33:06 -0600 Subject: [PATCH] createaccount: ui: change the look of the form label --- damus/Views/CreateAccountView.swift | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/damus/Views/CreateAccountView.swift b/damus/Views/CreateAccountView.swift index fc4818b6..efbcfcca 100644 --- a/damus/Views/CreateAccountView.swift +++ b/damus/Views/CreateAccountView.swift @@ -177,11 +177,10 @@ func FormLabel(_ title: String, optional: Bool = false) -> some View { return HStack { Text(title) .bold() - .foregroundColor(.white) if optional { - Text("optional", comment: "Label indicating that a form input is optional.") + Text("- optional", comment: "Label indicating that a form input is optional.") .font(.callout) - .foregroundColor(.white.opacity(0.5)) + .foregroundColor(DamusColors.mediumGrey) } } }