From 760f78adf8a1df3ea2e3306b6e25483c307e5f6e Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Tue, 17 Feb 2026 01:40:01 +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 aa0d3cd..9f4afc1 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -25,7 +25,7 @@ @plugin 'daisyui' { themes: garden --default, - night --prefersdark; + abyss --prefersdark; } @config '../../tailwind.config.js'; diff --git a/src/theme.config.ts b/src/theme.config.ts index 274fdd7..ccc0297 100644 --- a/src/theme.config.ts +++ b/src/theme.config.ts @@ -3,5 +3,5 @@ export const themeConfig = { light: 'garden', - dark: 'night', + dark: 'abyss', }