From 4886a36f2cb63b34d9f2a8ae6ad978e873a0179b Mon Sep 17 00:00:00 2001 From: juanatsap Date: Wed, 19 Nov 2025 14:54:10 +0000 Subject: [PATCH] fix: Make CV main content area theme-aware Change .cv-main background from var(--paper-white) to var(--paper-bg) so it adapts to theme: - Light theme: white (#ffffff) - Dark theme: cool dark gray (#1a1a1a) Now the entire CV paper is dark in dark theme, not just the page background. --- static/css/02-layout/_grid.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/css/02-layout/_grid.css b/static/css/02-layout/_grid.css index 3ab636e..8026fc6 100644 --- a/static/css/02-layout/_grid.css +++ b/static/css/02-layout/_grid.css @@ -33,6 +33,6 @@ /* Main Content Area */ .cv-main { - background: var(--paper-white); + background: var(--paper-bg); padding: 3rem 2.5rem 8rem 2.5rem; /* Bottom padding for footer and zoom control clearance */ }