From c366cd5bfdfc411ab786ac521db69437bccbeb70 Mon Sep 17 00:00:00 2001 From: abhiramtx <7253115-abhiramtx@users.noreply.replit.com> Date: Sat, 8 Nov 2025 22:56:50 +0000 Subject: [PATCH] Make images and overlay darker for better contrast Adjusted CSS filter for horizontal rules to increase darkness and modified the hero overlay background gradient to darken it further. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 5e584ab0-c340-4432-97ef-1972582b60e9 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: a79a345e-11b4-4426-ad89-da95c0b9b340 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/d0a1d46d-d203-4308-bc6a-312ac7c0243b/5e584ab0-c340-4432-97ef-1972582b60e9/9mn3aB4 --- static/css/styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/css/styles.css b/static/css/styles.css index cc5eb0a..0bde240 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -370,7 +370,7 @@ hr { position: absolute; top: 0; left: 0; - filter: grayscale(100%); + filter: grayscale(100%) brightness(0.2); } .hero-overlay { @@ -379,7 +379,7 @@ hr { left: 0; width: 100%; height: 100%; - background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.7) 100%); + background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.85) 100%); z-index: 1; }