From 0905fa49167938c2aadc9459b38ae26c9574ec18 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sun, 15 Feb 2026 21:08:00 +0100 Subject: [PATCH] design: change light theme to garden --- index.html | 2 +- src/styles/app.css | 2 +- src/theme.config.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 413ea87..404e2af 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,5 @@ - + diff --git a/src/styles/app.css b/src/styles/app.css index 808b6c1..ec49cc5 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -24,7 +24,7 @@ @plugin 'daisyui' { themes: - retro --default, + garden --default, coffee --prefersdark; } diff --git a/src/theme.config.ts b/src/theme.config.ts index 6e5e6b1..e4438a3 100644 --- a/src/theme.config.ts +++ b/src/theme.config.ts @@ -2,6 +2,6 @@ // Update these values to change the light and dark themes export const themeConfig = { - light: 'retro', + light: 'garden', dark: 'coffee', }