From 89bdc11cde6ffe16a0e96e63b3b7a5363924bb19 Mon Sep 17 00:00:00 2001 From: codytseng Date: Sun, 19 Oct 2025 15:21:51 +0800 Subject: [PATCH] style: reduce clickable background opacity to 0.3 --- src/index.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.css b/src/index.css index 25095e0..ca18fa8 100644 --- a/src/index.css +++ b/src/index.css @@ -38,7 +38,7 @@ transition: background-color 0.2s ease; &:active { - background-color: hsl(var(--muted) / 0.5); + background-color: hsl(var(--muted) / 0.3); } } @@ -60,7 +60,7 @@ @media (hover: hover) and (pointer: fine) { .clickable:hover { - background-color: hsl(var(--muted) / 0.5); + background-color: hsl(var(--muted) / 0.3); } }