From 6972ef629c4330a9f7ab1b44dabb9ec1221891e3 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 2 Aug 2025 04:15:49 +0200 Subject: [PATCH] design: change light theme to pastel --- 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 f9fa6e0..8601e77 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,5 @@ - + diff --git a/src/styles/app.css b/src/styles/app.css index c12e3a3..7d5fe11 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -24,7 +24,7 @@ @plugin 'daisyui' { themes: - valentine --default, + pastel --default, dim --prefersdark; } diff --git a/src/theme.config.ts b/src/theme.config.ts index ef5002a..f9e7867 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: 'valentine', + light: 'pastel', dark: 'dim', }