From eb88bfa8e4428a0cdf5494309c012afe6f3c1e90 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 31 Jan 2026 00:06:42 +0100 Subject: [PATCH] design: change dark theme to coffee --- 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 04363ea..3bf61d6 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -25,7 +25,7 @@ @plugin 'daisyui' { themes: retro --default, - forest --prefersdark; + coffee --prefersdark; } @config '../../tailwind.config.js'; diff --git a/src/theme.config.ts b/src/theme.config.ts index ee4d06a..6e5e6b1 100644 --- a/src/theme.config.ts +++ b/src/theme.config.ts @@ -3,5 +3,5 @@ export const themeConfig = { light: 'retro', - dark: 'forest', + dark: 'coffee', }