Skip to content

Commit

Permalink
Fix dark mode appearance
Browse files Browse the repository at this point in the history
  • Loading branch information
Supereg committed Nov 17, 2023
1 parent bd38bd7 commit 079d91e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/SpeziContact/Contact Views/ContactView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public struct ContactView: View {
Button(action: openMaps) {
ZStack {
RoundedRectangle(cornerRadius: 10)
.foregroundStyle(Color(uiColor: .secondarySystemBackground))
.foregroundStyle(Color(uiColor: .tertiarySystemFill))
HStack(alignment: .top) {
VStack(alignment: .leading, spacing: 4) {
Text("Address", bundle: .module, comment: "Contact Button Title")
Expand Down Expand Up @@ -182,7 +182,7 @@ public struct ContactView: View {
Button(action: contactOption.action) {
ZStack {
RoundedRectangle(cornerRadius: 10)
.foregroundStyle(Color(uiColor: .secondarySystemBackground))
.foregroundStyle(Color(uiColor: .tertiarySystemFill))
VStack(spacing: 8) {
contactOption.image
.font(.title3)
Expand Down

0 comments on commit 079d91e

Please sign in to comment.