From b027876228fb08e73379bfcb98d8fd08fe53b7df Mon Sep 17 00:00:00 2001 From: Christopher Fraser Date: Tue, 20 Aug 2024 11:24:45 +1000 Subject: [PATCH] change shadow to rgba(0,0,0,0.6) from black --- examples/tailwind.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tailwind.rs b/examples/tailwind.rs index 0a5de053..1bef0ffd 100644 --- a/examples/tailwind.rs +++ b/examples/tailwind.rs @@ -30,7 +30,7 @@ p.cool { background-color: purple; } #cool { background-color: blue; font-size: 32px; - box-shadow: 16px 16px 16px black; + box-shadow: 16px 16px 16px rgba(0,0,0,0.6); } .bg-red-100 { background-color: rgb(254 226 226); } .bg-red-200 { background-color: rgb(254 202 202); }