From ab335dac554c67cabf3763aa8d2e76f5a2822a36 Mon Sep 17 00:00:00 2001 From: Catherine Renelle <32781029+catrenelle@users.noreply.github.com> Date: Sun, 15 Feb 2026 22:16:07 -0500 Subject: [PATCH] Add warm neutral background to light theme Set light theme background to warm cream (#F5F3EF) with white cards, softer text (#2C2C2C), and a surface variant (#EDE9E3) to eliminate the flat all-white appearance. Co-Authored-By: Claude Opus 4.6 --- frontend/src/plugins/vuetify.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/plugins/vuetify.ts b/frontend/src/plugins/vuetify.ts index 3b850fc..6c1dcad 100644 --- a/frontend/src/plugins/vuetify.ts +++ b/frontend/src/plugins/vuetify.ts @@ -33,6 +33,11 @@ export default createVuetify({ warning: '#FFC107', info: '#2196F3', success: '#4CAF50', + background: '#F5F3EF', + surface: '#FFFFFF', + 'surface-variant': '#EDE9E3', + 'on-background': '#2C2C2C', + 'on-surface': '#2C2C2C', } } }