This commit is contained in:
Trey t
2024-06-17 11:44:48 -07:00
parent b9533a3e35
commit d9ec548357
5 changed files with 6 additions and 5 deletions

View File

@@ -30,7 +30,7 @@ struct AllWorkoutPickerView: View {
Image(systemName: "figure.strengthtraining.traditional")
.padding(.trailing)
})
.tint(.blue)
.tint(Color("appColor"))
}
}
}

View File

@@ -16,7 +16,7 @@ struct CountdownView: View {
HStack {
if bridgeModule.currentExerciseTimeLeft >= 0 && duration > bridgeModule.currentExerciseTimeLeft {
ProgressView(value: Float(bridgeModule.currentExerciseTimeLeft), total: Float(duration))
.tint(.green)
.tint(Color("appColor"))
}
}
}

View File

@@ -21,11 +21,10 @@ struct ExtExerciseList: View {
HStack {
if supersetExecerciseIdx == allSupersetExecerciseIndex {
Image(systemName: "figure.run")
.foregroundColor(.green)
.foregroundColor(Color("appColor"))
.font(Font.system(size: 55))
.minimumScaleFactor(0.01)
.lineLimit(1)
.foregroundColor(.green)
}
Text(supersetExecercise.exercise.name)