From 410c0cec7c688ad7f7e1e2e71c4627524e40b1f4 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Wed, 8 Apr 2026 19:03:07 +0200 Subject: [PATCH] design: change dark theme to sunset --- 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 92eb56f..a38728e 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -26,7 +26,7 @@ @plugin 'daisyui' { themes: garden --default, - black --prefersdark; + sunset --prefersdark; } @config '../../tailwind.config.js'; diff --git a/src/theme.config.ts b/src/theme.config.ts index 5f0b746..3d11005 100644 --- a/src/theme.config.ts +++ b/src/theme.config.ts @@ -3,5 +3,5 @@ export const themeConfig = { light: "garden", - dark: 'black' + dark: 'sunset' }