From 6a92edf04eeb6b1890d9c1a6b4f9397d83272e4a Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Tue, 3 Mar 2026 17:44:26 -0800 Subject: [PATCH] fix: make background less transparent --- src/styles/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/style.css b/src/styles/style.css index 2626f76..08349e7 100644 --- a/src/styles/style.css +++ b/src/styles/style.css @@ -1,7 +1,7 @@ :root { /* Witch color palette */ --witch-purple: #2b1b3d; - --witch-purple-translucent: hsla(267, 40%, 17%, 0.597); + --witch-purple-translucent: hsla(267, 40%, 17%, 0.85); --witch-plum: #44275a; --witch-rose: #a8577e; --witch-mauve: #d4a5c7; @@ -25,7 +25,7 @@ --sl-color-gray-6: var(--witch-purple); /* Translucent background */ - --content-bg: rgba(181, 185, 187, 0.543); + --content-bg: rgba(181, 185, 187, 0.85); --content-blur: 8px; }