From b5697759c3c99e6d59ed5e51c8d79fa3771f9611 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Thu, 19 Feb 2026 21:44:11 +0100 Subject: [PATCH] design: change dark theme to dim --- 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 4602eb4..085023b 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -25,7 +25,7 @@ @plugin 'daisyui' { themes: garden --default, - night --prefersdark; + dim --prefersdark; } @config '../../tailwind.config.js'; diff --git a/src/theme.config.ts b/src/theme.config.ts index 274fdd7..0d237cf 100644 --- a/src/theme.config.ts +++ b/src/theme.config.ts @@ -3,5 +3,5 @@ export const themeConfig = { light: 'garden', - dark: 'night', + dark: 'dim', }