From 314f1985b99ac0168afce585263fc65501b20328 Mon Sep 17 00:00:00 2001 From: Camille Moussu <66134347+Eriikah@users.noreply.github.com> Date: Mon, 16 Mar 2026 10:39:58 +0100 Subject: [PATCH] [#643] changed default dark color to white (#645) Co-authored-by: Camille Moussu --- src/features/Calendars/services/getCalendarsListAsync.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/Calendars/services/getCalendarsListAsync.ts b/src/features/Calendars/services/getCalendarsListAsync.ts index 3e6fe2d..bbf1eaa 100644 --- a/src/features/Calendars/services/getCalendarsListAsync.ts +++ b/src/features/Calendars/services/getCalendarsListAsync.ts @@ -79,7 +79,7 @@ export const getCalendarsListAsync = createAsyncThunk< const color = cal["apple:color"] ? { light: cal["apple:color"], - dark: defaultColors[0].dark, + dark: "#fff", } : defaultColors[0];