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
This commit is contained in:
ericholguin
2023-07-10 22:01:13 -06:00
committed by William Casarin
parent de63e96664
commit 5571052cfd

View File

@@ -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()
}