From fd7d06ce6999f87f6c074323208f816ab5f3eb62 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Tue, 5 May 2026 16:11:45 +0200 Subject: [PATCH] design: change light theme to retro --- index.html | 2 +- package.json | 3 +++ pnpm-workspace.yaml | 2 -- src/styles/app.css | 2 +- src/theme.config.ts | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) delete mode 100644 pnpm-workspace.yaml diff --git a/index.html b/index.html index a64af87..89cf6a4 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,5 @@ - + diff --git a/package.json b/package.json index 8137652..bee946f 100644 --- a/package.json +++ b/package.json @@ -93,5 +93,8 @@ "vite": "^8.0.1", "vite-plugin-pwa": "^1.2.0", "vitest": "^3.2.4" + }, + "pnpm": { + "onlyBuiltDependencies": ["core-js"] } } diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml deleted file mode 100644 index 55f54ed..0000000 --- a/pnpm-workspace.yaml +++ /dev/null @@ -1,2 +0,0 @@ -allowBuilds: - core-js: true diff --git a/src/styles/app.css b/src/styles/app.css index 2552ee1..6d0f4a9 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -31,7 +31,7 @@ @plugin 'daisyui' { themes: - emerald --default, + retro --default, forest --prefersdark; } diff --git a/src/theme.config.ts b/src/theme.config.ts index 1363cd5..41381ec 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: "emerald", + light: 'retro', dark: "forest" }