From 179c3df19e2a0a0caa8e96a4d5bd55a25ac47d71 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Fri, 23 Jan 2026 19:27:14 +0100 Subject: [PATCH] design: change light theme to retro --- 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..a36bdeb 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,5 @@ - + diff --git a/src/styles/app.css b/src/styles/app.css index dd7ba3d..5b70af9 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -24,7 +24,7 @@ @plugin 'daisyui' { themes: - pastel --default, + retro --default, abyss --prefersdark; } diff --git a/src/theme.config.ts b/src/theme.config.ts index 4efb287..84dfd47 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: 'retro', dark: 'abyss', }