@ -38,7 +38,6 @@ struct ActivitiesView: View {
Text(activity.name ?? "no activity")
Spacer()
Text(activity.recordCount)
.font(.system(.body, weight: .bold))
.foregroundColor(.accentColor)
}
@ -24,7 +24,12 @@ struct StatisticsSubView: View {
StatisticsView(activity: self.activity, filter: filter) { statValues in
HStack {
if let count = statValues.first(where: { $0.stat == .count }) {
LabeledContent(filter.localizedString, value: count.formattedValue)
Text(filter.localizedString)
Text(count.formattedValue).foregroundColor(.accentColor)
@ -79,8 +79,9 @@ struct StatView: View {
Text(self.statValue.stat.localizedName.uppercased())
.font(.footnote)
Text(self.statValue.formattedValue)
.font(.system(.title, weight: .bold))
.font(.system(.title, weight: .light))
}.padding(.vertical, 4.0)