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