Rounder corners, thicker borders, highlight highest availability

This commit is contained in:
Ben Grant 2021-05-17 18:52:00 +10:00
parent 8b24b2e27a
commit d2e5bcc4cb
10 changed files with 81 additions and 10 deletions

View file

@ -6,10 +6,12 @@ export const useSettingsStore = create(persist(
weekStart: 0,
timeFormat: '12h',
theme: 'System',
highlight: false,
setWeekStart: weekStart => set({ weekStart }),
setTimeFormat: timeFormat => set({ timeFormat }),
setTheme: theme => set({ theme }),
setHighlight: highlight => set({ highlight }),
}),
{ name: 'crabfit-settings' },
));