From 05f59a568d4b00ba18c62f37ce604a82845330e8 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Wed, 6 May 2026 20:31:57 +0200 Subject: [PATCH] design: change light theme to lemonade --- 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 ceae666..c21f0ab 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,5 @@ - + diff --git a/src/styles/app.css b/src/styles/app.css index c38f504..a43d720 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -31,7 +31,7 @@ @plugin 'daisyui' { themes: - cupcake --default, + lemonade --default, dracula --prefersdark; } diff --git a/src/theme.config.ts b/src/theme.config.ts index 76d2e36..1534562 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: 'cupcake', + light: 'lemonade', dark: 'dracula' }