From 66a1bcbaa9d5c1fb9df2819434cbc48bc57c9269 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Wed, 8 Apr 2026 19:01:48 +0200 Subject: [PATCH] design: change dark theme to black --- src/styles/app.css | 2 +- src/theme.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/app.css b/src/styles/app.css index a38728e..92eb56f 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -26,7 +26,7 @@ @plugin 'daisyui' { themes: garden --default, - sunset --prefersdark; + black --prefersdark; } @config '../../tailwind.config.js'; diff --git a/src/theme.config.ts b/src/theme.config.ts index a47b9ac..5f0b746 100644 --- a/src/theme.config.ts +++ b/src/theme.config.ts @@ -3,5 +3,5 @@ export const themeConfig = { light: "garden", - dark: "sunset" + dark: 'black' }