From 5d2f2bef4b025f621f2a28c78f2ba16cb932a13a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Lelong?= Date: Thu, 8 Aug 2024 11:43:59 +0200 Subject: [PATCH] fix: force light theme default --- pages/_app.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/_app.tsx b/pages/_app.tsx index c2e842a..c65169c 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -22,7 +22,7 @@ const { augmentDocumentWithEmotionCache, withAppEmotionCache } = createEmotionSsrAdvancedApproach({ key: 'css' }); const { withDsfr, dsfrDocumentApi } = createNextDsfrIntegrationApi({ - defaultColorScheme: 'system', + defaultColorScheme: 'light', Link });