Skip to content

Commit 86e4d63

Browse files
robertoglclaude
andcommitted
Use light background for card images
Replaces the high-contrast black (#1a1a1a) with a soft light gray (#f0f4f8) in light mode and muted dark (#21262d) in dark mode. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 89e8203 commit 86e4d63

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

index.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,12 +192,16 @@
192192
width: 100%;
193193
aspect-ratio: 16 / 9;
194194
overflow: hidden;
195-
background: #1a1a1a;
195+
background: #f0f4f8;
196196
display: flex;
197197
align-items: center;
198198
justify-content: center;
199199
}
200200

201+
[data-theme="dark"] .card-image {
202+
background: #21262d;
203+
}
204+
201205
.card-image img {
202206
width: 100%;
203207
height: 100%;

0 commit comments

Comments
 (0)