From e1e6f4ec28249a0272cfbc639e46a2a84ad68a1e Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Thu, 22 Jan 2026 23:43:42 +0100 Subject: [PATCH] design: change light theme to bumblebee --- 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 10690ba..cd79dc9 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,5 @@ - + diff --git a/src/styles/app.css b/src/styles/app.css index 8857547..f556081 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -24,7 +24,7 @@ @plugin 'daisyui' { themes: - winter --default, + bumblebee --default, dim --prefersdark; } diff --git a/src/theme.config.ts b/src/theme.config.ts index 391a425..5cb8806 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: 'winter', + light: 'bumblebee', dark: 'dim', }