Skip to content

Commit

Permalink
Settings: use accent color for arrows
Browse files Browse the repository at this point in the history
  • Loading branch information
dankimio committed Dec 10, 2020
1 parent 6402a60 commit 98e6bbc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions FlipTimer/Views/SettingsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ struct SettingsView: View {
Spacer()
Image(systemName: "arrow.up.forward")
.imageScale(.small)
.foregroundColor(.gray)
.foregroundColor(.accentColor)
}
})
}
Expand All @@ -38,7 +38,7 @@ struct SettingsView: View {
Spacer()
Image(systemName: "arrow.up.forward")
.imageScale(.small)
.foregroundColor(.gray)
.foregroundColor(.accentColor)
}
})
Link(destination: twitterURL, label: {
Expand All @@ -47,7 +47,7 @@ struct SettingsView: View {
Spacer()
Image(systemName: "arrow.up.forward")
.imageScale(.small)
.foregroundColor(.gray)
.foregroundColor(.accentColor)
}
})
}
Expand Down

0 comments on commit 98e6bbc

Please sign in to comment.