From cf02569c75d2fe3999c83f0d85e96c922cd89fe6 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sun, 19 Apr 2026 10:39:49 +0200 Subject: [PATCH] design: change light theme to emerald --- 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 097de59..a64af87 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,5 @@ - + diff --git a/src/styles/app.css b/src/styles/app.css index aabd692..a00a083 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -25,7 +25,7 @@ @plugin 'daisyui' { themes: - garden --default, + emerald --default, forest --prefersdark; } diff --git a/src/theme.config.ts b/src/theme.config.ts index 87d5467..35b296a 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: "garden", + light: 'emerald', dark: 'forest' }