From 9951ec94803e62c306be667a7516fd3eedf10105 Mon Sep 17 00:00:00 2001 From: Yulu Liu Date: Tue, 16 Sep 2025 15:57:10 -0700 Subject: [PATCH] Change header background color to green MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated header styling to use green background color (#22c55e) instead of the variable surface color for improved visual appearance. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- frontend/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/style.css b/frontend/style.css index 9d3af7c..d872c54 100644 --- a/frontend/style.css +++ b/frontend/style.css @@ -74,7 +74,7 @@ body { /* Header - Visible with theme toggle */ header { padding: 1rem 2rem; - background: var(--surface); + background: #22c55e; border-bottom: 1px solid var(--border-color); flex-shrink: 0; }