From e5969ec4394d9bf212c9f2555a4fedd75cfd7df6 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Thu, 22 Jan 2026 23:44:01 +0100 Subject: [PATCH] design: change dark theme to aqua --- 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 f556081..b7f2683 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -25,7 +25,7 @@ @plugin 'daisyui' { themes: bumblebee --default, - dim --prefersdark; + aqua --prefersdark; } @config '../../tailwind.config.js'; diff --git a/src/theme.config.ts b/src/theme.config.ts index 5cb8806..cc9ff9d 100644 --- a/src/theme.config.ts +++ b/src/theme.config.ts @@ -3,5 +3,5 @@ export const themeConfig = { light: 'bumblebee', - dark: 'dim', + dark: 'aqua', }