From 51feefee2c3838ea88d8ff22185e1d17c17272f9 Mon Sep 17 00:00:00 2001 From: James Stuckey Weber Date: Wed, 11 Dec 2024 16:37:50 -0500 Subject: [PATCH] Update src/lib/components/ratio/index.svelte Co-authored-by: Miriam Suzanne --- src/lib/components/ratio/index.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/ratio/index.svelte b/src/lib/components/ratio/index.svelte index 8e4a0f3..cc2440d 100644 --- a/src/lib/components/ratio/index.svelte +++ b/src/lib/components/ratio/index.svelte @@ -21,7 +21,7 @@ let alphaWarning = $derived.by(() => { if ($bg.alpha !== 1) return 'Alpha is not considered when the background is not opaque.'; - if ($fg.alpha !== 1) return 'This ratio is our best estimate.'; + if ($fg.alpha !== 1) return 'This ratio is our best estimate with transparency.'; return null; });