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