From b5daf118b4447b7daf4ac192f7ab0860b8c2e5eb Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 2 Aug 2025 03:57:33 +0200 Subject: [PATCH] design: change theme to lofi --- 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 a36bdeb..eac82e6 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,5 @@ - + diff --git a/src/styles/app.css b/src/styles/app.css index 32bf72a..9d7b991 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -24,7 +24,7 @@ @plugin 'daisyui' { themes: - retro --default, + lofi --default, dim --prefersdark; } diff --git a/src/theme.config.ts b/src/theme.config.ts index d576c9a..524eb83 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: 'retro', + light: 'lofi', dark: 'dim', }