commit 5571052cfd047acaba7feea063d72388f0f6e889
parent de63e9666439e82bf93d35f40f459b59d447030c
Author: ericholguin <eric.holguinsanchez@gmail.com>
Date: Mon, 10 Jul 2023 22:01:13 -0600
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
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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()
}