You can can give .tint to the ProgressView() not accent color. See this:
.tint
ProgressView()
ProgressView(value: 0.4) .progressViewStyle(.circular) .tint(.red)
or
ProgressView(value: 0.4) .progressViewStyle(.linear) .tint(.red)