From eb23fc2210f1437c8ba1dfba3f63010154f58b6a Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Tue, 8 Nov 2022 12:45:40 +1300 Subject: [PATCH] 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. --- TimerPage.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/TimerPage.tsx b/TimerPage.tsx index 54b9593..42c2af6 100644 --- a/TimerPage.tsx +++ b/TimerPage.tsx @@ -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() - const {color} = useTheme() useEffect(() => { settingsRepo.findOne({where: {}}).then(setSettings) @@ -66,7 +64,6 @@ export default function TimerPage() {