Remove primary color from timer progress

Some of these colors provide terrible contrast
so we should just leave it as default. Otherwise
people using certain colors (like light cyan)
can barely see this progress circle at all.
This commit is contained in:
Brandon Presley 2022-11-08 12:45:40 +13:00
parent b68f903a1c
commit eb23fc2210
1 changed files with 0 additions and 3 deletions

View File

@ -7,7 +7,6 @@ import {settingsRepo} from './db'
import DrawerHeader from './DrawerHeader'
import MassiveFab from './MassiveFab'
import Settings from './settings'
import {useTheme} from './use-theme'
interface TickEvent {
minutes: string
@ -18,7 +17,6 @@ export default function TimerPage() {
const [minutes, setMinutes] = useState('00')
const [seconds, setSeconds] = useState('00')
const [settings, setSettings] = useState<Settings>()
const {color} = useTheme()
useEffect(() => {
settingsRepo.findOne({where: {}}).then(setSettings)
@ -66,7 +64,6 @@ export default function TimerPage() {
<ProgressCircle
style={{height: 300, width: 500, marginBottom: MARGIN, top: -50}}
progress={progress}
progressColor={color}
strokeWidth={10}
/>
</View>