Use text for progress color on Timer

The progress color needs to be static
because I can't find a combo of background
color to contrast well with all the custom
primary colors.
This commit is contained in:
Brandon Presley 2022-11-09 13:26:16 +13:00
parent 60fd0130b3
commit e6d5e928a9
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ export default function TimerPage() {
style={{height: 300, width: 500, marginBottom: MARGIN, top: -50}} style={{height: 300, width: 500, marginBottom: MARGIN, top: -50}}
progress={progress} progress={progress}
strokeWidth={10} strokeWidth={10}
progressColor={colors.primary} progressColor={colors.text}
backgroundColor={colors.placeholder} backgroundColor={colors.placeholder}
/> />
</View> </View>