From e2147c74d9595f9bce18449c2f53f06ccbdef508 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sun, 3 Aug 2025 19:55:35 +0200 Subject: [PATCH] design: change light theme to winter --- 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 85750ce..10690ba 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,5 @@ - + diff --git a/src/styles/app.css b/src/styles/app.css index ea574e7..d2ac3c4 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -24,7 +24,7 @@ @plugin 'daisyui' { themes: - caramellatte --default, + winter --default, dim --prefersdark; } diff --git a/src/theme.config.ts b/src/theme.config.ts index 45ee7d0..391a425 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: 'caramellatte', + light: 'winter', dark: 'dim', }