From ec2e9abcad640c65fc6fe364105cfbf6888c44be Mon Sep 17 00:00:00 2001 From: vibsin9322 Date: Thu, 21 Aug 2025 19:12:42 +0900 Subject: [PATCH] Update header title color to blue in both main and admin pages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed header h1 color from #4a5568 (gray) to #667eea (blue) - Applied same blue color to both main page and admin page - Consistent branding across all pages 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- admin/styles.css | 2 +- styles.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/styles.css b/admin/styles.css index 82d8816..08cf626 100644 --- a/admin/styles.css +++ b/admin/styles.css @@ -29,7 +29,7 @@ header { } header h1 { - color: #4a5568; + color: #667eea; font-size: 2.5rem; margin-bottom: 10px; } diff --git a/styles.css b/styles.css index 9898fde..54cefbe 100644 --- a/styles.css +++ b/styles.css @@ -29,7 +29,7 @@ header { } header h1 { - color: #4a5568; + color: #667eea; font-size: 2.5rem; margin-bottom: 10px; }