From 5c8357f47b3af846790df5b24ce79d2be2b73b3f Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 25 May 2026 01:06:43 -0400 Subject: [PATCH] Remove card transparency and dimming effects in Pyramid mode --- pyramid.css | 4 ---- pyramid.js | 2 -- 2 files changed, 6 deletions(-) diff --git a/pyramid.css b/pyramid.css index f732dda..783a7a0 100644 --- a/pyramid.css +++ b/pyramid.css @@ -21,10 +21,6 @@ z-index: 100; } -.pyramid-layout .card:not(.is-exposed) { - filter: brightness(0.9) grayscale(0.2); -} - .pyramid-bottom-piles { display: flex; width: 100%; diff --git a/pyramid.js b/pyramid.js index 561990e..d8efe78 100644 --- a/pyramid.js +++ b/pyramid.js @@ -188,8 +188,6 @@ // Mark if it's currently playable for visual feedback const exposed = isExposed(card.id); el.classList.toggle('is-exposed', exposed); - // Remove hardcoded opacity, handle via CSS if needed - el.style.opacity = '1'; } index++; }