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
This commit is contained in:
abhiramtx
2025-11-08 22:56:50 +00:00
parent 1218b983ef
commit c366cd5bfd

View File

@@ -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;
}