From 5571052cfd047acaba7feea063d72388f0f6e889 Mon Sep 17 00:00:00 2001 From: ericholguin Date: Mon, 10 Jul 2023 22:01:13 -0600 Subject: [PATCH] Update nav to use adaptable color for dark and light modes Changelog-Fixed: Fixed nav bar color on login, eula, and account creation Closes: https://github.com/damus-io/damus/pull/1361 --- damus/Views/CreateAccountView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Views/CreateAccountView.swift b/damus/Views/CreateAccountView.swift index 04a7599e..b8371bad 100644 --- a/damus/Views/CreateAccountView.swift +++ b/damus/Views/CreateAccountView.swift @@ -107,7 +107,7 @@ struct BackNav: View { @Environment(\.dismiss) var dismiss var body: some View { Image("chevron-left") - .foregroundColor(.white) + .foregroundColor(DamusColors.adaptableBlack) .onTapGesture { self.dismiss() }